Re: [FFmpeg-devel] [PATCH] avcodec/hevcdec: Remove hevc_decode_extradata()

2017-07-06 Thread James Almer
On 7/6/2017 12:54 PM, wm4 wrote: > On Thu, 6 Jul 2017 17:08:27 +0200 > Michael Niedermayer wrote: > >> This function wrapped around ff_hevc_decode_extradata() and >> export_stream_params(), >> but from the 2 callers one needs to skip export_stream_params() so its >> simpler to >> directly call

Re: [FFmpeg-devel] [PATCH] avcodec/hevcdec: Remove hevc_decode_extradata()

2017-07-06 Thread wm4
On Thu, 6 Jul 2017 17:08:27 +0200 Michael Niedermayer wrote: > This function wrapped around ff_hevc_decode_extradata() and > export_stream_params(), > but from the 2 callers one needs to skip export_stream_params() so its > simpler to > directly call the needed code. > > Moving the 2nd part o

[FFmpeg-devel] [PATCH] avcodec/hevcdec: Remove hevc_decode_extradata()

2017-07-06 Thread Michael Niedermayer
This function wrapped around ff_hevc_decode_extradata() and export_stream_params(), but from the 2 callers one needs to skip export_stream_params() so its simpler to directly call the needed code. Moving the 2nd part of the code out was suggested by wm4 Signed-off-by: Michael Niedermayer ---