Re: [FFmpeg-devel] [PATCH] avcodec/wrapped_avframe: allocate a buffer with padding

2017-02-22 Thread Marton Balint
On Wed, 22 Feb 2017, wm4 wrote: > > Patch looks good, and I like it better than checking the codec ID. Ok, will apply soon. OK Thanks, pushed. Regards, Marton ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH] avcodec/wrapped_avframe: allocate a buffer with padding

2017-02-22 Thread wm4
On Wed, 22 Feb 2017 21:00:31 +0100 (CET) Marton Balint wrote: > On Wed, 22 Feb 2017, wm4 wrote: > > > On Wed, 22 Feb 2017 00:14:32 +0100 > > Marton Balint wrote: > > > >> This ensures that the wrapped avframe will not get reallocated later, which > >> would

Re: [FFmpeg-devel] [PATCH] avcodec/wrapped_avframe: allocate a buffer with padding

2017-02-22 Thread Marton Balint
On Wed, 22 Feb 2017, wm4 wrote: On Wed, 22 Feb 2017 00:14:32 +0100 Marton Balint wrote: This ensures that the wrapped avframe will not get reallocated later, which would invalidate internal references such as extended data. Signed-off-by: Marton Balint ---

Re: [FFmpeg-devel] [PATCH] avcodec/wrapped_avframe: allocate a buffer with padding

2017-02-21 Thread wm4
On Wed, 22 Feb 2017 00:14:32 +0100 Marton Balint wrote: > This ensures that the wrapped avframe will not get reallocated later, which > would invalidate internal references such as extended data. > > Signed-off-by: Marton Balint > --- >

[FFmpeg-devel] [PATCH] avcodec/wrapped_avframe: allocate a buffer with padding

2017-02-21 Thread Marton Balint
This ensures that the wrapped avframe will not get reallocated later, which would invalidate internal references such as extended data. Signed-off-by: Marton Balint --- libavcodec/wrapped_avframe.c | 16 ++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff