summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2014-08-10 20:04:56 -0400
committerMichael Niedermayer <michaelni@gmx.at>2014-08-11 02:27:27 +0200
commitbfffce4d081c87b9fadcc0ce3fb5309cf8f266e5 (patch)
tree3ebd8f14be79ea615d7fdbc94625bb38392f9996 /libavcodec
parent6801eb0a0981f113f5f09ed4799d9ae805af62a3 (diff)
hevc: add missing comma in log message.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/hevc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c
index 3272485486..829b5d1969 100644
--- a/libavcodec/hevc.c
+++ b/libavcodec/hevc.c
@@ -2484,7 +2484,7 @@ static int hls_nal_unit(HEVCContext *s)
return AVERROR_INVALIDDATA;
av_log(s->avctx, AV_LOG_DEBUG,
- "nal_unit_type: %d, nuh_layer_id: %dtemporal_id: %d\n",
+ "nal_unit_type: %d, nuh_layer_id: %d, temporal_id: %d\n",
s->nal_unit_type, nuh_layer_id, s->temporal_id);
return nuh_layer_id == 0;