Commit e5b51496 authored by Ivo van Poorten's avatar Ivo van Poorten

Fix segmentation fault for gray16le to gray conversion.

Originally committed as revision 8648 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 587d0722
......@@ -1886,7 +1886,9 @@ static void gray16be_to_gray(AVPicture *dst, const AVPicture *src,
static void gray16le_to_gray(AVPicture *dst, const AVPicture *src,
int width, int height)
{
gray16_to_gray(dst, src + 1, width, height);
AVPicture tmpsrc = *src;
tmpsrc.data[0]++;
gray16_to_gray(dst, &tmpsrc, width, height);
}
static void gray16_to_gray16(AVPicture *dst, const AVPicture *src,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment