wavpackparse: Explicitly handle ID_WVX_NEW_BITSTREAM

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6498>
This commit is contained in:
Sebastian Dröge 2024-04-01 14:33:05 +03:00 committed by GStreamer Marge Bot
parent 2dde87710c
commit 6402978a48
2 changed files with 2 additions and 0 deletions

View file

@ -337,6 +337,7 @@ gst_wavpack_parse_frame_metadata (GstWavpackParse * parse, GstBuffer * buf,
break;
case ID_WV_BITSTREAM:
case ID_WVX_BITSTREAM:
case ID_WVX_NEW_BITSTREAM:
break;
case ID_SAMPLE_RATE:
if (size == 3) {

View file

@ -66,6 +66,7 @@ G_BEGIN_DECLS
#define ID_CONFIG_BLOCK (ID_OPTIONAL_DATA | 0x5)
#define ID_MD5_CHECKSUM (ID_OPTIONAL_DATA | 0x6)
#define ID_SAMPLE_RATE (ID_OPTIONAL_DATA | 0x7)
#define ID_WVX_NEW_BITSTREAM (ID_OPTIONAL_DATA | ID_WVX_BITSTREAM)
#define FLAG_FINAL_BLOCK (1 << 12)