[MPlayer-cvslog] r37533 - in trunk: etc/codecs.conf libmpdemux/mp_taglists.c
cehoyos
subversion at mplayerhq.hu
Sat Oct 3 13:21:15 CEST 2015
Author: cehoyos
Date: Sat Oct 3 13:21:15 2015
New Revision: 37533
Log:
Support little-endian THP ADPCM.
Modified:
trunk/etc/codecs.conf
trunk/libmpdemux/mp_taglists.c
Modified: trunk/etc/codecs.conf
==============================================================================
--- trunk/etc/codecs.conf Sat Oct 3 13:09:01 2015 (r37532)
+++ trunk/etc/codecs.conf Sat Oct 3 13:21:15 2015 (r37533)
@@ -5108,6 +5108,13 @@ audiocodec ffadpcmthp
driver ffmpeg
dll adpcm_thp
+audiocodec ffadpcmthple
+ info "FFmpeg THP ADPCM little endian audio"
+ status working
+ fourcc THPL
+ driver ffmpeg
+ dll adpcm_thp_le
+
audiocodec libdv
info "raw DV audio (libdv)"
status working
Modified: trunk/libmpdemux/mp_taglists.c
==============================================================================
--- trunk/libmpdemux/mp_taglists.c Sat Oct 3 13:09:01 2015 (r37532)
+++ trunk/libmpdemux/mp_taglists.c Sat Oct 3 13:21:15 2015 (r37533)
@@ -48,6 +48,9 @@ static const struct AVCodecTag mp_wav_ta
{ AV_CODEC_ID_ADPCM_IMA_ISS, MKTAG('A', 'I', 'S', 'S') },
{ AV_CODEC_ID_ADPCM_IMA_WS, MKTAG('A', 'I', 'W', 'S') },
{ AV_CODEC_ID_ADPCM_THP, MKTAG('T', 'H', 'P', 'A') },
+#if LIBAVUTIL_VERSION_MICRO >= 100
+ { AV_CODEC_ID_ADPCM_THP_LE, MKTAG('T', 'H', 'P', 'L') },
+#endif
{ AV_CODEC_ID_ADPCM_XA, MKTAG('P', 'S', 'X', 'A') },
{ AV_CODEC_ID_AMR_NB, MKTAG('n', 'b', 0, 0) },
{ AV_CODEC_ID_ATRAC1, MKTAG('A', 'T', 'R', '1') },
More information about the MPlayer-cvslog
mailing list