mkvpropedit, GUI's header edit: add support for Emphasis audio track header element

This commit is contained in:
Moritz Bunkus 2022-10-01 18:18:39 +02:00
parent cfda511498
commit a2ce00d964
No known key found for this signature in database
GPG Key ID: 74AF00ADF2E32C85
2 changed files with 3 additions and 0 deletions

View File

@ -16,6 +16,8 @@
* mkvmerge: the options `--list-stereo-modes` and `--list-audio-emphasis` have
been added to list all support numerical & textual values for the
`--stereo-mode` & `--audio-emphasis` options.
* mkvpropedit, MKVToolNix GUI's header editor: added support for the Emphasis
audio track header element via the `emphasis` property.
## Bug fixes

View File

@ -212,6 +212,7 @@ property_element_c::init_tables() {
add("output-sampling-frequency", KaxAudioOutputSamplingFreq::ClassInfos, YT("Audio output sampling frequency"), YT("Real output sampling frequency in Hz."));
add("channels", KaxAudioChannels::ClassInfos, YT("Audio channels"), YT("Numbers of channels in the track."));
add("bit-depth", KaxAudioBitDepth::ClassInfos, YT("Audio bit depth"), YT("Bits per sample, mostly used for PCM."));
add("emphasis", KaxEmphasis::ClassInfos, YT("Audio emphasis"), YT("Emphasis applied on audio which must be reversed by player to get the actual samples."));
look_up(KaxTracks::ClassInfos, "projection-private").m_bit_length = 0;