diff --git a/common_video/h264/h264_bitstream_parser.cc b/common_video/h264/h264_bitstream_parser.cc index 96be4c8024..56158fd340 100644 --- a/common_video/h264/h264_bitstream_parser.cc +++ b/common_video/h264/h264_bitstream_parser.cc @@ -325,13 +325,15 @@ void H264BitstreamParser::ParseSlice(rtc::ArrayView slice) { break; } case H264::NaluType::kAud: + case H264::NaluType::kFiller: case H264::NaluType::kSei: case H264::NaluType::kPrefix: break; // Ignore these nalus, as we don't care about their contents. default: Result res = ParseNonParameterSetNalu(slice, nalu_type); if (res != kOk) - RTC_DLOG(LS_INFO) << "Failed to parse bitstream. Error: " << res; + RTC_DLOG(LS_INFO) << "Failed to parse bitstream. NAL type " + << static_cast(nalu_type) << ", error: " << res; break; } }