1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-29 04:36:13 +02:00

* turned into debug message - it's annoying when watching mjpeg files

Originally committed as revision 707 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Zdenek Kabelac 2002-06-27 13:21:16 +00:00
parent a406617f2a
commit d859228038

View File

@ -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;
}