aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/h263.c
diff options
context:
space:
mode:
authorFelix Bünemann <atmosfear@users.sourceforge.net>2002-07-09 18:14:59 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-07-09 18:14:59 +0000
commitc60a6560a1e54f15d897f18b60da26e3a7ceaae5 (patch)
treedafbe1541f72f6dc7ce8856110e13cdaaa2c87d4 /libavcodec/h263.c
parent55cb1ae6fcd56146c0197fde948038d44bb01eec (diff)
downloadffmpeg-c60a6560a1e54f15d897f18b60da26e3a7ceaae5.tar.gz
warning fix patch by atmos
Originally committed as revision 728 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263.c')
-rw-r--r--libavcodec/h263.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c
index ae1eea7d7d..5ea636b49b 100644
--- a/libavcodec/h263.c
+++ b/libavcodec/h263.c
@@ -32,8 +32,8 @@
//rounded divison & shift
#define RSHIFT(a,b) ((a) > 0 ? ((a) + (1<<((b)-1)))>>(b) : ((a) + (1<<((b)-1))-1)>>(b))
-#define PRINT_MB_TYPE(a) ;
-//#define PRINT_MB_TYPE(a) printf(a);
+#define PRINT_MB_TYPE(a) {}
+//#define PRINT_MB_TYPE(a) printf(a)
static void h263_encode_block(MpegEncContext * s, DCTELEM * block,
int n);
@@ -2357,7 +2357,7 @@ int h263_decode_mb(MpegEncContext *s,
INT16 *mot_val;
static INT8 quant_tab[4] = { -1, -2, 1, 2 };
- if(s->mb_x==0) PRINT_MB_TYPE("\n")
+ if(s->mb_x==0) PRINT_MB_TYPE("\n");
if(s->resync_marker){
if(s->resync_mb_x == s->mb_x && s->resync_mb_y+1 == s->mb_y){
@@ -2539,7 +2539,7 @@ int h263_decode_mb(MpegEncContext *s,
//FIXME is this correct?
/* s->last_mv[0][0][0]=
s->last_mv[0][0][1]=0;*/
- PRINT_MB_TYPE("s")
+ PRINT_MB_TYPE("s");
return 0;
}