summaryrefslogtreecommitdiff
path: root/libavcodec/mpeg12.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-10-19 20:56:02 +0200
committerClément Bœsch <ubitux@gmail.com>2011-10-19 20:56:02 +0200
commit057161d39bc5bc97a60c2c5b49d1f96cfcbcc386 (patch)
tree53a67a2164bbabf841ad54f8af7234ffb639dd69 /libavcodec/mpeg12.c
parent44d27736fcd3c53ea102847368e609b96e6eda86 (diff)
mpeg12: remove '[' and ']' around last timecode field to match std representation.
Diffstat (limited to 'libavcodec/mpeg12.c')
-rw-r--r--libavcodec/mpeg12.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c
index ab8f2215bc..180afb3967 100644
--- a/libavcodec/mpeg12.c
+++ b/libavcodec/mpeg12.c
@@ -2178,7 +2178,7 @@ static void mpeg_decode_gop(AVCodecContext *avctx,
broken_link = get_bits1(&s->gb);
if (s->avctx->debug & FF_DEBUG_PICT_INFO)
- av_log(s->avctx, AV_LOG_DEBUG, "GOP (%02d:%02d:%02d%c[%02d]) closed_gop=%d broken_link=%d\n",
+ av_log(s->avctx, AV_LOG_DEBUG, "GOP (%02d:%02d:%02d%c%02d) closed_gop=%d broken_link=%d\n",
time_code_hours, time_code_minutes, time_code_seconds,
drop_frame_flag ? ';' : ':',
time_code_pictures, s->closed_gop, broken_link);