mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-04 13:32:29 +00:00
h264: skip all Filler Data NALs.
This commit is contained in:
parent
81ab8dad37
commit
7277f0e220
1 changed files with 4 additions and 0 deletions
|
@ -2279,6 +2279,10 @@ decode_buffer(GstVaapiDecoderH264 *decoder, GstBuffer *buffer)
|
|||
/* skip all Access Unit NALs */
|
||||
status = GST_VAAPI_DECODER_STATUS_SUCCESS;
|
||||
break;
|
||||
case GST_H264_NAL_FILLER_DATA:
|
||||
/* skip all Filler Data NALs */
|
||||
status = GST_VAAPI_DECODER_STATUS_SUCCESS;
|
||||
break;
|
||||
default:
|
||||
GST_DEBUG("unsupported NAL unit type %d", nalu.type);
|
||||
status = GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
|
||||
|
|
Loading…
Reference in a new issue