diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2005-05-07 16:27:08 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2005-05-07 16:27:08 +0000 |
commit | eb95effb747e829b8daecba10258f9fa0c67484e (patch) | |
tree | b4a4e591bd8945eba43b487fcfc3604ab009f513 /src/libffmpeg/libavcodec | |
parent | 45a1f6bcdcebbb3f49cd66a82777b9b65f90c09b (diff) | |
download | xine-lib-eb95effb747e829b8daecba10258f9fa0c67484e.tar.gz xine-lib-eb95effb747e829b8daecba10258f9fa0c67484e.tar.bz2 |
Fix missing retun in non-void function.
CVS patchset: 7529
CVS date: 2005/05/07 16:27:08
Diffstat (limited to 'src/libffmpeg/libavcodec')
-rw-r--r-- | src/libffmpeg/libavcodec/dsputil.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libffmpeg/libavcodec/dsputil.c b/src/libffmpeg/libavcodec/dsputil.c index 2db9c6631..1ef956cc4 100644 --- a/src/libffmpeg/libavcodec/dsputil.c +++ b/src/libffmpeg/libavcodec/dsputil.c @@ -371,6 +371,8 @@ static inline int w_c(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, in assert(s>=0); return s>>2; +#else + return 0; #endif } |