Re: [FFmpeg-devel] [PATCH] vp9_parser: fix endless loop w/0-sized frame

2015-10-19 Thread James Zern
On Fri, Oct 16, 2015 at 4:05 PM, Ronald S. Bultje wrote: > > Hi, > > On Fri, Oct 16, 2015 at 6:46 PM, James Zern wrote: > > > treat this the same as an over-sized superframe packet to break out of > > the parser loop and allow the decoder to fail. > > > > Signed-off-by: James Zern > > --- > > l

Re: [FFmpeg-devel] [PATCH] vp9_parser: fix endless loop w/0-sized frame

2015-10-16 Thread Ronald S. Bultje
Hi, On Fri, Oct 16, 2015 at 6:46 PM, James Zern wrote: > treat this the same as an over-sized superframe packet to break out of > the parser loop and allow the decoder to fail. > > Signed-off-by: James Zern > --- > libavcodec/vp9_parser.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletion

[FFmpeg-devel] [PATCH] vp9_parser: fix endless loop w/0-sized frame

2015-10-16 Thread James Zern
treat this the same as an over-sized superframe packet to break out of the parser loop and allow the decoder to fail. Signed-off-by: James Zern --- libavcodec/vp9_parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/vp9_parser.c b/libavcodec/vp9_parser.c in