vlc | branch: master | Thomas Guillem <[email protected]> | Mon Oct 7 11:43:52 2019 +0200| [8759eeadee61ba53e36c76ba1a15b486885e01d9] | committer: Thomas Guillem
fourcc: add VLC_CODEC_DTSHD This new fourcc should only by used for audio output and filters. Decoder, packetizers, and demuxers should not set it (but use PROFILE_DTS_* instead). > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8759eeadee61ba53e36c76ba1a15b486885e01d9 --- include/vlc_aout.h | 1 + include/vlc_fourcc.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/include/vlc_aout.h b/include/vlc_aout.h index 0b2d19e49f..49527f30fb 100644 --- a/include/vlc_aout.h +++ b/include/vlc_aout.h @@ -84,6 +84,7 @@ #define AOUT_FMT_HDMI( p_format ) \ ( (p_format)->i_format == VLC_CODEC_EAC3 \ + ||(p_format)->i_format == VLC_CODEC_DTSHD \ ||(p_format)->i_format == VLC_CODEC_TRUEHD \ ||(p_format)->i_format == VLC_CODEC_MLP \ ) diff --git a/include/vlc_fourcc.h b/include/vlc_fourcc.h index 691e493eb7..5bdf4ead11 100644 --- a/include/vlc_fourcc.h +++ b/include/vlc_fourcc.h @@ -444,6 +444,8 @@ #define VLC_CODEC_A52 VLC_FOURCC('a','5','2',' ') #define VLC_CODEC_EAC3 VLC_FOURCC('e','a','c','3') #define VLC_CODEC_DTS VLC_FOURCC('d','t','s',' ') +/* Only used by outputs and filters */ +#define VLC_CODEC_DTSHD VLC_FOURCC('d','t','s','h') #define VLC_CODEC_WMA1 VLC_FOURCC('W','M','A','1') #define VLC_CODEC_WMA2 VLC_FOURCC('W','M','A','2') #define VLC_CODEC_WMAP VLC_FOURCC('W','M','A','P') _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
