[Ffmpeg-cvslog] r6676 - trunk/libavcodec/xvmcvideo.c
rathann
subversion
Thu Oct 12 21:57:47 CEST 2006
Author: rathann
Date: Thu Oct 12 21:57:47 2006
New Revision: 6676
Modified:
trunk/libavcodec/xvmcvideo.c
Log:
Fixes:
xvmcvideo.c: In function ?XVMC_decode_mb?:
xvmcvideo.c:141: warning: ?return? with a value, in function returning void
Approved by Ivan.
Modified: trunk/libavcodec/xvmcvideo.c
==============================================================================
--- trunk/libavcodec/xvmcvideo.c (original)
+++ trunk/libavcodec/xvmcvideo.c Thu Oct 12 21:57:47 2006
@@ -138,7 +138,7 @@
if(s->encoding){
av_log(s->avctx, AV_LOG_ERROR, "XVMC doesn't support encoding!!!\n");
- return -1;
+ return;
}
//from MPV_decode_mb(),
More information about the ffmpeg-cvslog
mailing list