Re: [FFmpeg-devel] [PATCH 9/9] avcodec/videotoolbox: create avcC even when h264 extradata is missing

2017-09-26 Thread wm4
On Mon, 25 Sep 2017 17:36:31 -0700 Aman Gupta wrote: > From: Aman Gupta > > Removes the avctx->extradata_size requirement when creating avcC, since > avctx->extradata is only used in the esds code path. > > This fixes an issue where the VideoToolbox decoder

Re: [FFmpeg-devel] [PATCH 9/9] avcodec/videotoolbox: create avcC even when h264 extradata is missing

2017-09-26 Thread Carl Eugen Hoyos
2017-09-26 2:36 GMT+02:00 Aman Gupta : > Removes the avctx->extradata_size requirement when > creating avcC, since avctx->extradata is only used in the > esds code path. Please split the patch in a functional and a cosmetic change. Carl Eugen

[FFmpeg-devel] [PATCH 9/9] avcodec/videotoolbox: create avcC even when h264 extradata is missing

2017-09-25 Thread Aman Gupta
From: Aman Gupta Removes the avctx->extradata_size requirement when creating avcC, since avctx->extradata is only used in the esds code path. This fixes an issue where the VideoToolbox decoder would not work unless avformat_find_stream_info() was called. ---