mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-05 23:18:47 +00:00
wavpackparse: Explicitly handle ID_WVX_NEW_BITSTREAM
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6564>
This commit is contained in:
parent
32e077cb67
commit
18548cdd76
2 changed files with 2 additions and 0 deletions
|
@ -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) {
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue