1
mirror of https://code.videolan.org/videolan/vlc synced 2024-08-31 06:46:39 +02:00

Support for Atrac1 codec

This commit is contained in:
Jean-Baptiste Kempf 2009-09-28 00:54:52 +02:00
parent 88dd636968
commit 298a634e00
4 changed files with 10 additions and 0 deletions

3
NEWS
View File

@ -4,6 +4,9 @@ Changes between 1.0.2 and 1.1.0-git:
Access:
* Port of the screen module from Xlib to XCB
Decoders:
* Support for Atrac1
Demuxers:
* Support for ADPCM in .flv streams
* EXPERIMENTAL support for .aob files from DVD-Audio (MLP and LPCM)

View File

@ -233,6 +233,7 @@
#define VLC_CODEC_WAVPACK VLC_FOURCC('W','V','P','K')
#define VLC_CODEC_GSM VLC_FOURCC('g','s','m',' ')
#define VLC_CODEC_GSM_MS VLC_FOURCC('a','g','s','m')
#define VLC_CODEC_ATRAC1 VLC_FOURCC('a','t','r','1')
#define VLC_CODEC_ATRAC3 VLC_FOURCC('a','t','r','c')
#define VLC_CODEC_SONIC VLC_FOURCC('S','O','N','C')
#define VLC_CODEC_IMC VLC_FOURCC(0x1,0x4,0x0,0x0)

View File

@ -333,6 +333,9 @@ static const struct
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 34, 0 )
{ VLC_CODEC_TWINVQ, CODEC_ID_TWINVQ, AUDIO_ES },
#endif
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 36, 0 )
{ VLC_CODEC_ATRAC1, CODEC_ID_ATRAC1, AUDIO_ES },
#endif
/* Lossless */
{ VLC_CODEC_FLAC, CODEC_ID_FLAC, AUDIO_ES },

View File

@ -954,6 +954,9 @@ static const entry_t p_list_audio[] = {
B(VLC_CODEC_GSM_MS, "Microsoft GSM Audio"),
A("agsm"),
B(VLC_CODEC_ATRAC1, "atrac 1"),
A("atr1"),
B(VLC_CODEC_ATRAC3, "atrac 3"),
A("atrc"),
A("\x70\x02\x00\x00"),