Re: [FFmpeg-devel] [PATCH] avcodec: add an AV1 parser

2018-09-24 Thread James Almer
On 9/24/2018 8:41 PM, Mark Thompson wrote: > On 24/09/18 01:12, James Almer wrote: >> Simple parser to set keyframes, frame type, structure, width, height, and >> pixel >> format, plus stream profile and level. >> >> Signed-off-by: James Almer >> --- >> Missing Changelog entry and version bump. >

Re: [FFmpeg-devel] [PATCH] avcodec: add an AV1 parser

2018-09-24 Thread Mark Thompson
On 24/09/18 01:12, James Almer wrote: > Simple parser to set keyframes, frame type, structure, width, height, and > pixel > format, plus stream profile and level. > > Signed-off-by: James Almer > --- > Missing Changelog entry and version bump. > > This depends on "[PATCH v2 2/3] lavc: Add coded

Re: [FFmpeg-devel] [PATCH] avcodec: add an AV1 parser

2018-09-23 Thread James Almer
On 9/23/2018 9:12 PM, James Almer wrote: > +subsampling = seq->color_config.subsampling_x << 1 & > seq->color_config.subsampling_y; Changed the logical and into a logical or locally. > +bitdepth= 8 + seq->color_config.high_bitdepth * 2 + > seq->color_config.twelve_bit * 2; >

[FFmpeg-devel] [PATCH] avcodec: add an AV1 parser

2018-09-23 Thread James Almer
Simple parser to set keyframes, frame type, structure, width, height, and pixel format, plus stream profile and level. Signed-off-by: James Almer --- Missing Changelog entry and version bump. This depends on "[PATCH v2 2/3] lavc: Add coded bitstream read/write support for AV1" which should be co