Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
1a8240f5
Commit
1a8240f5
authored
May 06, 2014
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Tak support
(Why noone added this?)
parent
233e8157
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-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
+2
-0
No files found.
include/vlc_fourcc.h
View file @
1a8240f5
...
...
@@ -404,6 +404,7 @@
#define VLC_CODEC_INDEO_AUDIO VLC_FOURCC('m','s',0x04,0x02)
#define VLC_CODEC_METASOUND VLC_FOURCC('m','s',0x00,0x75)
#define VLC_CODEC_ON2AVC VLC_FOURCC('m','s',0x05,0x00)
#define VLC_CODEC_TAK VLC_FOURCC('t','a','k',' ')
/* Subtitle */
#define VLC_CODEC_SPU VLC_FOURCC('s','p','u',' ')
...
...
modules/codec/avcodec/fourcc.c
View file @
1a8240f5
...
...
@@ -453,7 +453,9 @@ static const struct
{
VLC_CODEC_OPUS
,
AV_CODEC_ID_OPUS
,
AUDIO_ES
},
#endif
/* AV_CODEC_ID_COMFORT_NOISE */
/* AV_CODEC_ID_TAK */
#if LIBAVCODEC_VERSION_CHECK( 54, 34, 0, 65, 100 )
{
VLC_CODEC_TAK
,
AV_CODEC_ID_TAK
,
AUDIO_ES
},
#endif
#if LIBAVCODEC_VERSION_CHECK( 55, 15, 0, 24, 100 )
{
VLC_CODEC_METASOUND
,
AV_CODEC_ID_METASOUND
,
AUDIO_ES
},
#endif
...
...
src/misc/fourcc.c
View file @
1a8240f5
...
...
@@ -1447,6 +1447,8 @@ static const staticentry_t p_list_audio[] = {
B
(
VLC_CODEC_INDEO_AUDIO
,
"Indeo Audio Coder"
),
A
(
"ms
\x04\x02
"
),
B
(
VLC_CODEC_TAK
,
"TAK (Tom's lossless Audio Kompressor)"
),
B
(
0
,
""
)
};
static
const
staticentry_t
p_list_spu
[]
=
{
...
...
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