Commit e3728626 authored by Michel Bardiaux's avatar Michel Bardiaux

Fix one warning

Originally committed as revision 7976 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1e9be11f
......@@ -480,7 +480,7 @@ static int ls_decode_picture(MJpegDecodeContext *s, int near, int point_transfor
src += s->picture.linesize[0];
}
}else{
uint16_t *src = s->picture.data[0];
uint16_t *src = (uint16_t*) s->picture.data[0];
for(i = 0; i < s->height; i++){
for(x = 0; x < w; x++){
......
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