Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
298a634e
Commit
298a634e
authored
Sep 28, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support for Atrac1 codec
parent
88dd6369
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
0 deletions
+10
-0
NEWS
NEWS
+3
-0
include/vlc_fourcc.h
include/vlc_fourcc.h
+1
-0
modules/codec/avcodec/fourcc.c
modules/codec/avcodec/fourcc.c
+3
-0
src/misc/fourcc.c
src/misc/fourcc.c
+3
-0
No files found.
NEWS
View file @
298a634e
...
...
@@ -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)
...
...
include/vlc_fourcc.h
View file @
298a634e
...
...
@@ -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)
...
...
modules/codec/avcodec/fourcc.c
View file @
298a634e
...
...
@@ -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
},
...
...
src/misc/fourcc.c
View file @
298a634e
...
...
@@ -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
"
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment