Re: [FFmpeg-devel] [PATCH] avcodec/utils: split side-data in new decode API too

2016-04-29 Thread wm4
On Thu, 28 Apr 2016 16:46:49 +0200 Michael Niedermayer wrote: > On Thu, Apr 28, 2016 at 03:34:34PM +0200, wm4 wrote: > > The deprecated avcodec_decode_video2() and avcodec_decode_audio4() > > functions called av_packet_split_side_data() on the input packets. This > > is required for packets produ

Re: [FFmpeg-devel] [PATCH] avcodec/utils: split side-data in new decode API too

2016-04-28 Thread Michael Niedermayer
On Thu, Apr 28, 2016 at 03:34:34PM +0200, wm4 wrote: > The deprecated avcodec_decode_video2() and avcodec_decode_audio4() > functions called av_packet_split_side_data() on the input packets. This > is required for packets produced by libavformat with the > AVFMT_FLAG_KEEP_SIDE_DATA flag unset (whic

[FFmpeg-devel] [PATCH] avcodec/utils: split side-data in new decode API too

2016-04-28 Thread wm4
The deprecated avcodec_decode_video2() and avcodec_decode_audio4() functions called av_packet_split_side_data() on the input packets. This is required for packets produced by libavformat with the AVFMT_FLAG_KEEP_SIDE_DATA flag unset (which is unfortunately the default). The new API didn't do this