summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec/mpeg12.c
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-08-10 17:37:50 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-08-10 17:37:50 +0000
commitf86d8e69cb6655f42575055862d6a9d5c4f6d2e5 (patch)
tree142ff685cc5b29407574b3cb8cd8685a2424ee39 /src/libffmpeg/libavcodec/mpeg12.c
parent9cdb6c61b02aced10c14ecf71193bd17c01c2d7a (diff)
downloadxine-lib-f86d8e69cb6655f42575055862d6a9d5c4f6d2e5.tar.gz
xine-lib-f86d8e69cb6655f42575055862d6a9d5c4f6d2e5.tar.bz2
minor bugfixes, make debug should work now, codec close hopefully works too
CVS patchset: 405 CVS date: 2001/08/10 17:37:50
Diffstat (limited to 'src/libffmpeg/libavcodec/mpeg12.c')
-rw-r--r--src/libffmpeg/libavcodec/mpeg12.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libffmpeg/libavcodec/mpeg12.c b/src/libffmpeg/libavcodec/mpeg12.c
index 381fafadd..44fdfc0b4 100644
--- a/src/libffmpeg/libavcodec/mpeg12.c
+++ b/src/libffmpeg/libavcodec/mpeg12.c
@@ -28,9 +28,9 @@
#ifdef USE_FASTMEMCPY
#include "fastmemcpy.h"
#endif
-//#define DEBUG
+//#define DEBUG_PRINTS
-#ifdef DEBUG
+#ifdef DEBUG_PRINTS
#define dprintf(fmt,args...) printf(fmt, ## args)
#else
#define dprintf(fmt,args...)
@@ -585,7 +585,7 @@ static int mpeg_decode_mb(MpegEncContext *s,
!s->frame_pred_frame_dct &&
(mb_type & (MB_PAT | MB_INTRA))) {
s->interlaced_dct = get_bits1(&s->gb);
-#ifdef DEBUG
+#ifdef DEBUG_PRINTS
if (s->interlaced_dct)
printf("interlaced_dct\n");
#endif