From bd5c563037954c30691fd4904a115bd2c3382365 Mon Sep 17 00:00:00 2001 From: Steve Lhomme Date: Sat, 22 Oct 2022 14:11:19 +0200 Subject: [PATCH] KaxSemantic: update with latest spectool (using clean enum text) --- matroska/KaxSemantic.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/matroska/KaxSemantic.h b/matroska/KaxSemantic.h index 7c5fb85..cc5d7d6 100644 --- a/matroska/KaxSemantic.h +++ b/matroska/KaxSemantic.h @@ -896,9 +896,9 @@ typedef enum { */ typedef enum { MATROSKA_TRACK_ENCODING_COMP_NONE = -1, - MATROSKA_TRACK_ENCODING_COMP_ZLIB = 0, // zlib compression [@!RFC1950]. - MATROSKA_TRACK_ENCODING_COMP_BZLIB = 1, // bzip2 compression [@!BZIP2], **SHOULD NOT** be used; see usage notes. - MATROSKA_TRACK_ENCODING_COMP_LZO1X = 2, // Lempel-Ziv-Oberhumer compression [@!LZO], **SHOULD NOT** be used; see usage notes. + MATROSKA_TRACK_ENCODING_COMP_ZLIB = 0, // zlib compression (RFC1950). + MATROSKA_TRACK_ENCODING_COMP_BZLIB = 1, // bzip2 compression (BZIP2), **SHOULD NOT** be used. + MATROSKA_TRACK_ENCODING_COMP_LZO1X = 2, // Lempel-Ziv-Oberhumer compression (LZO), **SHOULD NOT** be used. MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP = 3, // Octets in `ContentCompSettings` ((#contentcompsettings-element)) have been stripped from each frame. } MatroskaTrackEncodingCompAlgo; @@ -1113,10 +1113,10 @@ typedef enum { MATROSKA_EMPHASIS_NO_EMPHASIS = 0, MATROSKA_EMPHASIS_CD_AUDIO = 1, // First order filter with zero point at 50 microseconds and a pole at 15 microseconds. Also found on DVD Audio and MPEG audio. MATROSKA_EMPHASIS_RESERVED = 2, - MATROSKA_EMPHASIS_CCIT_J_17 = 3, // Defined in [@!ITU-J.17]. + MATROSKA_EMPHASIS_CCIT_J_17 = 3, // Defined in (ITU-J.17). MATROSKA_EMPHASIS_FM_50 = 4, // FM Radio in Europe. RC Filter with a time constant of 50 microseconds. MATROSKA_EMPHASIS_FM_75 = 5, // FM Radio in the USA. RC Filter with a time constant of 75 microseconds. - MATROSKA_EMPHASIS_PHONO_RIAA = 10, // Phono filter with time constants of t1=3180, t2=318 and t3=75 microseconds. [@!NAB1964] + MATROSKA_EMPHASIS_PHONO_RIAA = 10, // Phono filter with time constants of t1=3180, t2=318 and t3=75 microseconds. (NAB1964) MATROSKA_EMPHASIS_PHONO_IEC_N78 = 11, // Phono filter with time constants of t1=3180, t2=450 and t3=50 microseconds. MATROSKA_EMPHASIS_PHONO_TELDEC = 12, // Phono filter with time constants of t1=3180, t2=318 and t3=50 microseconds. MATROSKA_EMPHASIS_PHONO_EMI = 13, // Phono filter with time constants of t1=2500, t2=500 and t3=70 microseconds. @@ -1157,19 +1157,19 @@ typedef enum { */ typedef enum { MATROSKA_CONTENTENCALGO_NOT_ENCRYPTED = 0, // The data are not encrypted. - MATROSKA_CONTENTENCALGO_DES = 1, // Data Encryption Standard (DES) [@!FIPS.46-3]. - MATROSKA_CONTENTENCALGO_3DES = 2, // Triple Data Encryption Algorithm [@!SP.800-67]. - MATROSKA_CONTENTENCALGO_TWOFISH = 3, // Twofish Encryption Algorithm [@!Twofish]. - MATROSKA_CONTENTENCALGO_BLOWFISH = 4, // Blowfish Encryption Algorithm [@!Blowfish]. - MATROSKA_CONTENTENCALGO_AES = 5, // Advanced Encryption Standard (AES) [@!FIPS.197]. + MATROSKA_CONTENTENCALGO_DES = 1, // Data Encryption Standard (DES) (FIPS.46-3). + MATROSKA_CONTENTENCALGO_3DES = 2, // Triple Data Encryption Algorithm (SP.800-67). + MATROSKA_CONTENTENCALGO_TWOFISH = 3, // Twofish Encryption Algorithm (Twofish). + MATROSKA_CONTENTENCALGO_BLOWFISH = 4, // Blowfish Encryption Algorithm (Blowfish). + MATROSKA_CONTENTENCALGO_AES = 5, // Advanced Encryption Standard (AES) (FIPS.197). } MatroskaContentEncodingAlgo; /** *The AES cipher mode used in the encryption. */ typedef enum { - MATROSKA_AESSETTINGSCIPHERMODE_AES_CTR = 1, // Counter [@!SP.800-38A]. - MATROSKA_AESSETTINGSCIPHERMODE_AES_CBC = 2, // Cipher Block Chaining [@!SP.800-38A]. + MATROSKA_AESSETTINGSCIPHERMODE_AES_CTR = 1, // Counter (SP.800-38A). + MATROSKA_AESSETTINGSCIPHERMODE_AES_CBC = 2, // Cipher Block Chaining (SP.800-38A). } MatroskaAESSettingsCipherMode; /** -- 2.40.0