summaryrefslogtreecommitdiff
path: root/libavformat/avidec.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-05-24 22:59:25 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-05-24 22:59:25 +0000
commitc13b250bad63752a8441846b0e5d4de1ecde6e1a (patch)
tree146fd6edf3307579827ffe781b997de3f7da434e /libavformat/avidec.c
parent09d1208cdbdf651d6f69c04e6a395f7c12c19710 (diff)
move DEBUG define before include to get dprintf and change printf to dprintf
Originally committed as revision 18932 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avidec.c')
-rw-r--r--libavformat/avidec.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/avidec.c b/libavformat/avidec.c
index 217a5133f3..671a27b999 100644
--- a/libavformat/avidec.c
+++ b/libavformat/avidec.c
@@ -19,6 +19,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+//#define DEBUG
+//#define DEBUG_SEEK
+
#include "libavutil/intreadwrite.h"
#include "libavutil/bswap.h"
#include "avformat.h"
@@ -29,9 +32,6 @@
#undef NDEBUG
#include <assert.h>
-//#define DEBUG
-//#define DEBUG_SEEK
-
typedef struct AVIStream {
int64_t frame_offset; /* current frame (video) or byte (audio) counter
(used to compute the pts) */
@@ -78,7 +78,7 @@ static int guess_ni_flag(AVFormatContext *s);
#ifdef DEBUG
static void print_tag(const char *str, unsigned int tag, int size)
{
- printf("%s: tag=%c%c%c%c size=0x%x\n",
+ dprintf(NULL, "%s: tag=%c%c%c%c size=0x%x\n",
str, tag & 0xff,
(tag >> 8) & 0xff,
(tag >> 16) & 0xff,
@@ -287,7 +287,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
if(size) avi->movi_end = avi->movi_list + size + (size & 1);
else avi->movi_end = url_fsize(pb);
#ifdef DEBUG
- printf("movi end=%"PRIx64"\n", avi->movi_end);
+ dprintf(NULL, "movi end=%"PRIx64"\n", avi->movi_end);
#endif
goto end_of_header;
}