On Sat, Apr 19, 2025 at 08:07:00PM +0100, Mark Thompson wrote:
> Demuxes raw streams as defined in draft spec section 10.2.
> ---
> libavformat/Makefile | 1 +
> libavformat/allformats.c | 1 +
> libavformat/apvdec.c | 245 +++
> 3 files changed, 247
Mark Thompson:
> On 21/04/2025 01:54, Michael Niedermayer wrote:
>> On Sat, Apr 19, 2025 at 08:07:00PM +0100, Mark Thompson wrote:
>>> Demuxes raw streams as defined in draft spec section 10.2.
>>> ---
>>> libavformat/Makefile | 1 +
>>> libavformat/allformats.c | 1 +
>>> libavformat/apvd
On 21/04/2025 01:54, Michael Niedermayer wrote:
> On Sat, Apr 19, 2025 at 08:07:00PM +0100, Mark Thompson wrote:
>> Demuxes raw streams as defined in draft spec section 10.2.
>> ---
>> libavformat/Makefile | 1 +
>> libavformat/allformats.c | 1 +
>> libavformat/apvdec.c | 245
On Sat, Apr 19, 2025 at 08:07:00PM +0100, Mark Thompson wrote:
> Demuxes raw streams as defined in draft spec section 10.2.
> ---
> libavformat/Makefile | 1 +
> libavformat/allformats.c | 1 +
> libavformat/apvdec.c | 245 +++
> 3 files changed, 247
On 4/20/2025 1:57 PM, Mark Thompson wrote:
On 20/04/2025 17:20, James Almer wrote:
On 4/20/2025 1:07 PM, Derek Buitenhuis wrote:
On 4/19/2025 8:07 PM, Mark Thompson wrote:
+typedef struct APVHeaderInfo {
+ uint8_t pbu_type;
+ uint16_t group_id;
+
+ uint8_t profile_idc;
+ uint8_t
On 20/04/2025 17:20, James Almer wrote:
> On 4/20/2025 1:07 PM, Derek Buitenhuis wrote:
>> On 4/19/2025 8:07 PM, Mark Thompson wrote:
>>> +typedef struct APVHeaderInfo {
>>> + uint8_t pbu_type;
>>> + uint16_t group_id;
>>> +
>>> + uint8_t profile_idc;
>>> + uint8_t level_idc;
>>> +
On 4/20/2025 1:07 PM, Derek Buitenhuis wrote:
On 4/19/2025 8:07 PM, Mark Thompson wrote:
+typedef struct APVHeaderInfo {
+uint8_t pbu_type;
+uint16_t group_id;
+
+uint8_t profile_idc;
+uint8_t level_idc;
+uint8_t band_idc;
+
+uint32_t frame_width;
+uint32_t frame_
On 4/19/2025 8:07 PM, Mark Thompson wrote:
> +typedef struct APVHeaderInfo {
> +uint8_t pbu_type;
> +uint16_t group_id;
> +
> +uint8_t profile_idc;
> +uint8_t level_idc;
> +uint8_t band_idc;
> +
> +uint32_t frame_width;
> +uint32_t frame_height;
> +
> +uint8_t c
Demuxes raw streams as defined in draft spec section 10.2.
---
libavformat/Makefile | 1 +
libavformat/allformats.c | 1 +
libavformat/apvdec.c | 245 +++
3 files changed, 247 insertions(+)
create mode 100644 libavformat/apvdec.c
diff --git a/libav