[FFmpeg-cvslog] h2645_parse: Fix loglevel for NAL header parsing

Derek Buitenhuis git at videolan.org
Tue Mar 19 21:56:35 EET 2019


ffmpeg | branch: master | Derek Buitenhuis <derek.buitenhuis at gmail.com> | Mon Mar 18 19:18:11 2019 +0000| [90b85ab21fcb2895d4cf25527179ea0fa5f08ec0] | committer: Derek Buitenhuis

h2645_parse: Fix loglevel for NAL header parsing

We don't treat this as an error.

Signed-off-by: Derek Buitenhuis <derek.buitenhuis at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=90b85ab21fcb2895d4cf25527179ea0fa5f08ec0
---

 libavcodec/h2645_parse.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/h2645_parse.c b/libavcodec/h2645_parse.c
index 942f2c5d71..24658b3dfa 100644
--- a/libavcodec/h2645_parse.c
+++ b/libavcodec/h2645_parse.c
@@ -499,7 +499,7 @@ int ff_h2645_packet_split(H2645Packet *pkt, const uint8_t *buf, int length,
             ret = h264_parse_nal_header(nal, logctx);
         if (ret <= 0 || nal->size <= 0 || nal->size_bits <= 0) {
             if (ret < 0) {
-                av_log(logctx, AV_LOG_ERROR, "Invalid NAL unit %d, skipping.\n",
+                av_log(logctx, AV_LOG_WARNING, "Invalid NAL unit %d, skipping.\n",
                        nal->type);
             }
             pkt->nb_nals--;



More information about the ffmpeg-cvslog mailing list