Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
7cf7a7e4
Commit
7cf7a7e4
authored
Aug 01, 2005
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mux/asf.c: codec description fixes suggested by trax
parent
b9e8991c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
modules/mux/asf.c
modules/mux/asf.c
+8
-3
No files found.
modules/mux/asf.c
View file @
7cf7a7e4
...
...
@@ -517,19 +517,24 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
}
else
if
(
p_input
->
p_fmt
->
i_codec
==
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'1'
)
)
{
tk
->
psz_name
=
"Windows Media Video
1
"
;
tk
->
psz_name
=
"Windows Media Video
7
"
;
tk
->
i_fourcc
=
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'1'
);
}
else
if
(
p_input
->
p_fmt
->
i_codec
==
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'2'
)
)
{
tk
->
psz_name
=
"Windows Media Video
2
"
;
tk
->
psz_name
=
"Windows Media Video
8
"
;
tk
->
i_fourcc
=
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'2'
);
}
else
if
(
p_input
->
p_fmt
->
i_codec
==
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'3'
)
)
{
tk
->
psz_name
=
"Windows Media Video
3
"
;
tk
->
psz_name
=
"Windows Media Video
9
"
;
tk
->
i_fourcc
=
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'3'
);
}
else
if
(
p_input
->
p_fmt
->
i_codec
==
VLC_FOURCC
(
'h'
,
'2'
,
'6'
,
'4'
)
)
{
tk
->
psz_name
=
"H.264/MPEG-4 AVC"
;
tk
->
i_fourcc
=
VLC_FOURCC
(
'h'
,
'2'
,
'6'
,
'4'
);
}
else
{
tk
->
psz_name
=
_
(
"Unknown Video"
);
...
...
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