summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-01-01 15:27:38 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-01-01 21:04:34 +0100
commit393253b4b3b454830b22c8e69acbe11e2684da7e (patch)
tree2d243cdb4af5299f14702f2da30e4bafafb19327 /libavcodec/h264.c
parent2e0efa332b23ab5177303101c44f5efc4b5d8f9c (diff)
h264: Print pass in NAL debug output
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 9ec8bd9c88..1ec04f32ff 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -3844,7 +3844,7 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size){
bit_length= !dst_length ? 0 : (8*dst_length - ff_h264_decode_rbsp_trailing(h, ptr + dst_length - 1));
if(s->avctx->debug&FF_DEBUG_STARTCODE){
- av_log(h->s.avctx, AV_LOG_DEBUG, "NAL %d/%d at %d/%d length %d\n", hx->nal_unit_type, hx->nal_ref_idc, buf_index, buf_size, dst_length);
+ av_log(h->s.avctx, AV_LOG_DEBUG, "NAL %d/%d at %d/%d length %d pass %d\n", hx->nal_unit_type, hx->nal_ref_idc, buf_index, buf_size, dst_length, pass);
}
if (h->is_avc && (nalsize != consumed) && nalsize){