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
285861a1
Commit
285861a1
authored
Aug 27, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TwinVQ support using the lastest avcodec commit from Vitor Sessak
parent
bf765b54
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
+8
-0
include/vlc_fourcc.h
include/vlc_fourcc.h
+1
-0
modules/codec/avcodec/fourcc.c
modules/codec/avcodec/fourcc.c
+4
-0
src/misc/fourcc.c
src/misc/fourcc.c
+3
-0
No files found.
include/vlc_fourcc.h
View file @
285861a1
...
...
@@ -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',' ')
...
...
modules/codec/avcodec/fourcc.c
View file @
285861a1
...
...
@@ -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
},
...
...
src/misc/fourcc.c
View file @
285861a1
...
...
@@ -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
[]
=
{
...
...
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