[FFmpeg-cvslog] h264: Print pass in NAL debug output
Michael Niedermayer
git at videolan.org
Sun Jan 1 21:52:31 CET 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Jan 1 15:27:38 2012 +0100| [393253b4b3b454830b22c8e69acbe11e2684da7e] | committer: Michael Niedermayer
h264: Print pass in NAL debug output
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=393253b4b3b454830b22c8e69acbe11e2684da7e
---
libavcodec/h264.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 9ec8bd9..1ec04f3 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){
More information about the ffmpeg-cvslog
mailing list