Browse Source

avoid infinite loop if pixel format conversion does not exist

Originally committed as revision 11259 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Baptiste Coudurier 17 years ago
parent
commit
86404ffba2
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/imgconvert.c

+ 2
- 0
libavcodec/imgconvert.c View File

@@ -2555,6 +2555,8 @@ int img_convert(AVPicture *dst, int dst_pix_fmt,
else
int_pix_fmt = PIX_FMT_RGB24;
}
if (src_pix_fmt == int_pix_fmt)
return -1;
if (avpicture_alloc(tmp, int_pix_fmt, dst_width, dst_height) < 0)
return -1;
ret = -1;


Loading…
Cancel
Save