diff options
author | Diego Biurrun <diego@biurrun.de> | 2015-02-06 12:03:46 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2015-02-14 10:45:16 -0800 |
commit | 36cf8eb4489f8709b5fb1cdb87e125ef53301c2f (patch) | |
tree | 05280f01a297997748e768f44c25a5c9799b1a85 /libavformat | |
parent | 2a9c6fae927964b5dd0b5d3d9292f5621bd21664 (diff) | |
download | ffmpeg-36cf8eb4489f8709b5fb1cdb87e125ef53301c2f.tar.gz |
mov: Fix compilation with DEBUG enabled
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mov.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 7a140a81a4..df7357f30e 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -994,7 +994,7 @@ static int mov_read_colr(MOVContext *c, AVIOContext *pb, MOVAtom atom) if (c->isom) { uint8_t color_range = avio_r8(pb) >> 7; - av_dlog(c->fc, " full %"PRIu8"", color_range) + av_dlog(c->fc, " full %"PRIu8"", color_range); if (color_range) st->codec->color_range = AVCOL_RANGE_JPEG; else @@ -1031,7 +1031,7 @@ static int mov_read_colr(MOVContext *c, AVIOContext *pb, MOVAtom atom) case 7: st->codec->colorspace = AVCOL_SPC_SMPTE240M; break; } } - av_dlog(c->fc, "\n") + av_dlog(c->fc, "\n"); return 0; } |