diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-09-11 07:13:49 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-11 07:13:49 +0200 |
commit | ba9e9605ad2b9398275efd7110e44fce6526dab5 (patch) | |
tree | 2393ba6a472033a4b2097e990e79d87e30c690e1 /libavcodec/cavsdec.c | |
parent | bb4ddeea5f6951d13833e6a1235763257ff0a658 (diff) | |
download | ffmpeg-ba9e9605ad2b9398275efd7110e44fce6526dab5.tar.gz |
cavsdec/decode_mb_b: fix return type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/cavsdec.c')
-rw-r--r-- | libavcodec/cavsdec.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/cavsdec.c b/libavcodec/cavsdec.c index b0a18c46b9..4e69176c2f 100644 --- a/libavcodec/cavsdec.c +++ b/libavcodec/cavsdec.c @@ -749,7 +749,7 @@ static void decode_mb_p(AVSContext *h, enum cavs_mb mb_type) { h->col_type_base[h->mbidx] = mb_type; } -static void decode_mb_b(AVSContext *h, enum cavs_mb mb_type) { +static int decode_mb_b(AVSContext *h, enum cavs_mb mb_type) { int block; enum cavs_sub_mb sub_type[4]; int flags; @@ -859,6 +859,8 @@ static void decode_mb_b(AVSContext *h, enum cavs_mb mb_type) { if(mb_type != B_SKIP) decode_residual_inter(h); ff_cavs_filter(h,mb_type); + + return 0; } /***************************************************************************** |