Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
6e80c0c
explainer image of contguous and non-contigous subframes
david3a Nov 16, 2024
7017a3a
starting the changes needed to support buffers and slices
david3a Nov 16, 2024
809d3c0
fix order and include stdint
david3a Nov 17, 2024
c52dc16
fixed type of buffer
david3a Nov 19, 2024
d869b6a
schema fixes
david3a Nov 20, 2024
329510e
schema fixes
david3a Nov 20, 2024
8d153ef
removed duplaicte type in level defintion
david3a Nov 20, 2024
b659fa1
schema updated
david3a Nov 21, 2024
9dfcd9f
added regex validation to timing
david3a Nov 24, 2024
869cceb
more valdiationa nd ;lanar as a type
david3a Nov 24, 2024
199191a
added back user call back pointer, fixed spelling added a tx buffer s…
david3a Nov 26, 2024
cf31f56
removed comment no longer needed
david3a Nov 28, 2024
0082c52
added traceId
david3a Nov 28, 2024
c49d634
named the constant
david3a Nov 28, 2024
854bc21
user callback for tx only comes through calls to tx functio not the s…
david3a Nov 29, 2024
254f42b
Revert "user callback for tx only comes through calls to tx functio n…
david3a Nov 29, 2024
799af36
removed user callback param from tx again, fixed test app
david3a Nov 29, 2024
7f2d3e4
support 8 and 16 video depth, clean un-used types
david3a Dec 12, 2024
f4e8ffd
tweak audio params
david3a Dec 13, 2024
c079b67
extend audio channel based on github discussion
david3a Dec 13, 2024
bb551dd
add handle for buffer to structure
david3a Jan 9, 2025
978e886
change time stamps to structures rather then string
david3a Feb 3, 2025
4de81b4
added types for frame rate and aspect ratio
david3a Feb 4, 2025
e1dd240
added planar mode, thsi maybe temporary while we get testing completed,
david3a Feb 5, 2025
20f4027
updated default state
david3a Feb 5, 2025
255dc67
Added monotonic flag to the timing section,
david3a Feb 6, 2025
ff5f20a
notes on transmission order added
david3a Feb 10, 2025
9087e1f
moved uri
david3a Feb 13, 2025
2ae3daf
Merge remote-tracking branch 'origin/datkins/phrm-628' into feature/3…
david3a Mar 6, 2025
9fbf1c7
Merge remote-tracking branch 'gitlab.3adesign.co/feature/3adesign' in…
david3a Mar 6, 2025
58b038f
Merge remote-tracking branch 'origin/datkins/phrm-628' into datkins/p…
david3a Mar 6, 2025
93c9434
use den not denom
david3a Mar 18, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,6 @@ ffmpeg gbrp rgb (gbr) 8 bit

# Compressed Video Data Formats

TODO need to decide whats happening here if anything

They shall be indentified by using the Internet Assigned Numbers Authority (IANA) video name strings, which can be found at https://www.iana.org/assignments/media-types/media-types.xhtml#video, for the JSON configuration "encodingName" element.

An example for H.264 compressed video is shown below:
Expand Down Expand Up @@ -189,3 +187,10 @@ The section below is repeated once for each ancillary data packet, as specified
| Checksum_Word |word_align |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
```

# Transmission Order
Payload buffers will be transmitted in the order in which the GccgTxPayload() function is called and then delivered to the recieve callback in the same order

The API is not responsible for re-ordering of payload buffers using timestamps, this is the responsibility of the user of the API to trasnmit in the correct order or re-order on reciept.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo: Should be receipt.



Loading