[Ffmpeg-cvslog] r7976 - trunk/libavcodec/jpeg_ls.c
mbardiaux
subversion
Wed Feb 14 10:57:41 CET 2007
Author: mbardiaux
Date: Wed Feb 14 10:57:41 2007
New Revision: 7976
Modified:
trunk/libavcodec/jpeg_ls.c
Log:
Fix one warning
Modified: trunk/libavcodec/jpeg_ls.c
==============================================================================
--- trunk/libavcodec/jpeg_ls.c (original)
+++ trunk/libavcodec/jpeg_ls.c Wed Feb 14 10:57:41 2007
@@ -480,7 +480,7 @@
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++){
More information about the ffmpeg-cvslog
mailing list