Commit 36cf8eb4 authored by Diego Biurrun's avatar Diego Biurrun

mov: Fix compilation with DEBUG enabled

parent 2a9c6fae
...@@ -994,7 +994,7 @@ static int mov_read_colr(MOVContext *c, AVIOContext *pb, MOVAtom atom) ...@@ -994,7 +994,7 @@ static int mov_read_colr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
if (c->isom) { if (c->isom) {
uint8_t color_range = avio_r8(pb) >> 7; 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) if (color_range)
st->codec->color_range = AVCOL_RANGE_JPEG; st->codec->color_range = AVCOL_RANGE_JPEG;
else else
...@@ -1031,7 +1031,7 @@ static int mov_read_colr(MOVContext *c, AVIOContext *pb, MOVAtom atom) ...@@ -1031,7 +1031,7 @@ static int mov_read_colr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
case 7: st->codec->colorspace = AVCOL_SPC_SMPTE240M; break; case 7: st->codec->colorspace = AVCOL_SPC_SMPTE240M; break;
} }
} }
av_dlog(c->fc, "\n") av_dlog(c->fc, "\n");
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment