[vlc-commits] aout: add HACK to differentiate DTS from DTS-HD
Thomas Guillem
git at videolan.org
Thu Dec 21 10:53:10 CET 2017
vlc/vlc-3.0 | branch: master | Thomas Guillem <thomas at gllm.fr> | Wed Dec 20 14:09:08 2017 +0100| [99f88a0b8cf3e14c51dd8516708e901a96cf44d0] | committer: Jean-Baptiste Kempf
aout: add HACK to differentiate DTS from DTS-HD
This HACK need to be replaced in 4.0 by adding a profile to audio_format_t or
by passing it to aout modules.
(cherry picked from commit 542c20c7c35fedfecbb698d0b3222b2c489ff1a4)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=99f88a0b8cf3e14c51dd8516708e901a96cf44d0
---
src/audio_output/output.c | 2 ++
src/input/decoder.c | 5 +++++
2 files changed, 7 insertions(+)
diff --git a/src/audio_output/output.c b/src/audio_output/output.c
index 4fb7ab8d7f..ff4eda24c4 100644
--- a/src/audio_output/output.c
+++ b/src/audio_output/output.c
@@ -224,6 +224,8 @@ audio_output_t *aout_New (vlc_object_t *parent)
var_AddCallback (aout, "mute", var_Copy, parent);
var_Create (aout, "device", VLC_VAR_STRING);
var_AddCallback (aout, "device", var_CopyDevice, parent);
+ /* TODO: 3.0 HACK: only way to signal DTS_HD to aout modules. */
+ var_Create (aout, "dtshd", VLC_VAR_BOOL);
aout->event.volume_report = aout_VolumeNotify;
aout->event.mute_report = aout_MuteNotify;
diff --git a/src/input/decoder.c b/src/input/decoder.c
index 1f8d65c4f9..98e80dd4f3 100644
--- a/src/input/decoder.c
+++ b/src/input/decoder.c
@@ -365,6 +365,11 @@ static int aout_update_format( decoder_t *p_dec )
p_aout = input_resource_GetAout( p_owner->p_resource );
if( p_aout )
{
+ /* TODO: 3.0 HACK: we need to put i_profile inside audio_format_t
+ * for 4.0 */
+ if( p_dec->fmt_out.i_codec == VLC_CODEC_DTS )
+ var_SetBool( p_aout, "dtshd", p_dec->fmt_out.i_profile > 0 );
+
if( aout_DecNew( p_aout, &format,
&p_dec->fmt_out.audio_replay_gain,
&request_vout ) )
More information about the vlc-commits
mailing list