Commit 285861a1 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

TwinVQ support using the lastest avcodec commit from Vitor Sessak

parent bf765b54
......@@ -264,6 +264,7 @@
#define VLC_CODEC_FI32 VLC_FOURCC('f','i','3','2')
#define VLC_CODEC_FL32 VLC_FOURCC('f','l','3','2')
#define VLC_CODEC_FL64 VLC_FOURCC('f','l','6','4')
#define VLC_CODEC_TWINVQ VLC_FOURCC('T','W','I','N')
/* Subtitle */
#define VLC_CODEC_SPU VLC_FOURCC('s','p','u',' ')
......
......@@ -338,6 +338,10 @@ static const struct
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 51, 50, 1 )
{ VLC_CODEC_SPEEX, CODEC_ID_SPEEX, AUDIO_ES },
#endif
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 34, 0 )
#warning HERE
{ VLC_CODEC_TWINVQ, CODEC_ID_TWINVQ, AUDIO_ES },
#endif
/* PCM */
{ VLC_CODEC_S8, CODEC_ID_PCM_S8, AUDIO_ES },
......
......@@ -1068,6 +1068,9 @@ static const entry_t p_list_audio[] = {
B(VLC_CODEC_FL32, "64 bits float"),
A("fl64"),
B(VLC_CODEC_TWINVQ, "TwinVQ"),
A("TWIN"),
B(0, "")
};
static const entry_t p_list_spu[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment