Commit 45bf6dd5 authored by mbardiaux's avatar mbardiaux

Fix one warning


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7976 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b94d47aa
......@@ -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