projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
de1013e
)
Fixes:
author
Dominik Mierzejewski
<dominik@rangers.eu.org>
Thu, 12 Oct 2006 19:57:47 +0000
(19:57 +0000)
committer
Dominik Mierzejewski
<dominik@rangers.eu.org>
Thu, 12 Oct 2006 19:57:47 +0000
(19:57 +0000)
xvmcvideo.c: In function ‘XVMC_decode_mb’:
xvmcvideo.c:141: warning: ‘return’ with a value, in function returning void
Approved by Ivan.
Originally committed as revision 6676 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/xvmcvideo.c
patch
|
blob
|
history
diff --git
a/libavcodec/xvmcvideo.c
b/libavcodec/xvmcvideo.c
index 66905954857a578586682b9980f48af6d365c40b..4a0677f6e5e1685afd0d7179385f3ce9d7d76758 100644
(file)
--- a/
libavcodec/xvmcvideo.c
+++ b/
libavcodec/xvmcvideo.c
@@
-138,7
+138,7
@@
const int mb_xy = s->mb_y * s->mb_stride + s->mb_x;
if(s->encoding){
av_log(s->avctx, AV_LOG_ERROR, "XVMC doesn't support encoding!!!\n");
- return
-1
;
+ return;
}
//from MPV_decode_mb(),