[FFmpeg-cvslog] r9993 - trunk/libavcodec/h264.c

alex subversion
Wed Aug 8 22:27:18 CEST 2007


Author: alex
Date: Wed Aug  8 22:27:18 2007
New Revision: 9993

Log:
debug: tell how much bits are skipped with unknown nal code

Modified:
   trunk/libavcodec/h264.c

Modified: trunk/libavcodec/h264.c
==============================================================================
--- trunk/libavcodec/h264.c	(original)
+++ trunk/libavcodec/h264.c	Wed Aug  8 22:27:18 2007
@@ -7853,7 +7853,7 @@ static int decode_nal_units(H264Context 
         case NAL_AUXILIARY_SLICE:
             break;
         default:
-            av_log(avctx, AV_LOG_ERROR, "Unknown NAL code: %d\n", h->nal_unit_type);
+            av_log(avctx, AV_LOG_ERROR, "Unknown NAL code: %d (%d bits)\n", h->nal_unit_type, bit_length);
         }
     }
 




More information about the ffmpeg-cvslog mailing list