diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-06-27 13:21:16 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-06-27 13:21:16 +0000 |
commit | d8592280387478e1ec9e124c7cbd7e59e0d2c791 (patch) | |
tree | 7b20d03b8f5f59ba50a5d2c4b708a4014a7cea73 /libavcodec/mjpeg.c | |
parent | a406617f2a2e7d44cf8ce29b9c23fa3a7042c1d6 (diff) | |
download | ffmpeg-d8592280387478e1ec9e124c7cbd7e59e0d2c791.tar.gz |
* turned into debug message - it's annoying when watching mjpeg files
Originally committed as revision 707 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mjpeg.c')
-rw-r--r-- | libavcodec/mjpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mjpeg.c b/libavcodec/mjpeg.c index 577e9d884a..ccaf37e38b 100644 --- a/libavcodec/mjpeg.c +++ b/libavcodec/mjpeg.c @@ -1023,7 +1023,7 @@ static int mjpeg_decode_dri(MJpegDecodeContext *s, if (get_bits(&s->gb, 16) != 4) return -1; s->restart_interval = get_bits(&s->gb, 16); - printf("restart interval: %d\n", s->restart_interval); + dprintf("restart interval: %d\n", s->restart_interval); return 0; } |