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
1128f3cb
Commit
1128f3cb
authored
Jan 09, 2014
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Atrac3+ decoder mapping
parent
1f73fdab
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletion
+7
-1
include/vlc_fourcc.h
include/vlc_fourcc.h
+1
-0
modules/codec/avcodec/fourcc.c
modules/codec/avcodec/fourcc.c
+3
-1
src/misc/fourcc.c
src/misc/fourcc.c
+3
-0
No files found.
include/vlc_fourcc.h
View file @
1128f3cb
...
...
@@ -327,6 +327,7 @@
#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_ATRAC3P VLC_FOURCC('a','t','r','p')
#define VLC_CODEC_IMC VLC_FOURCC(0x1,0x4,0x0,0x0)
#define VLC_CODEC_TRUESPEECH VLC_FOURCC(0x22,0x0,0x0,0x0)
#define VLC_CODEC_NELLYMOSER VLC_FOURCC('N','E','L','L')
...
...
modules/codec/avcodec/fourcc.c
View file @
1128f3cb
...
...
@@ -404,7 +404,9 @@ static const struct
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 54, 5, 0 )
{
VLC_CODEC_WMAL
,
AV_CODEC_ID_WMALOSSLESS
,
AUDIO_ES
},
#endif
/* AV_CODEC_ID_ATRAC3P */
#if LIBAVCODEC_VERSION_CHECK( 55, 32, 0, 47, 100 )
{
VLC_CODEC_ATRAC3P
,
AV_CODEC_ID_ATRAC3P
,
AUDIO_ES
},
#endif
{
VLC_CODEC_EAC3
,
AV_CODEC_ID_EAC3
,
AUDIO_ES
},
{
VLC_CODEC_SIPR
,
AV_CODEC_ID_SIPR
,
AUDIO_ES
},
/* AV_CODEC_ID_MP1 */
...
...
src/misc/fourcc.c
View file @
1128f3cb
...
...
@@ -1224,6 +1224,9 @@ static const staticentry_t p_list_audio[] = {
A
(
"atrc"
),
A
(
"
\x70\x02\x00\x00
"
),
B
(
VLC_CODEC_ATRAC3P
,
"atrac 3+"
),
A
(
"atrp"
),
B
(
VLC_CODEC_IMC
,
"IMC"
),
A
(
"
\x01\x04\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