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
8c869070
Commit
8c869070
authored
Jul 25, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/mux/asf.c, ts.c, ogg.c: added WMV3 fourcc.
parent
9e63dcf8
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
+7
-0
modules/mux/asf.c
modules/mux/asf.c
+5
-0
modules/mux/mpeg/ts.c
modules/mux/mpeg/ts.c
+1
-0
modules/mux/ogg.c
modules/mux/ogg.c
+1
-0
No files found.
modules/mux/asf.c
View file @
8c869070
...
@@ -488,6 +488,11 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
...
@@ -488,6 +488,11 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
tk
->
psz_name
=
"Windows Media Video 2"
;
tk
->
psz_name
=
"Windows Media Video 2"
;
tk
->
i_fourcc
=
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'2'
);
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
->
i_fourcc
=
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'3'
);
}
else
else
{
{
tk
->
psz_name
=
_
(
"Unknown Video"
);
tk
->
psz_name
=
_
(
"Unknown Video"
);
...
...
modules/mux/mpeg/ts.c
View file @
8c869070
...
@@ -568,6 +568,7 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
...
@@ -568,6 +568,7 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
/* I didn't want to do that :P */
/* I didn't want to do that :P */
case
VLC_FOURCC
(
'H'
,
'2'
,
'6'
,
'3'
):
case
VLC_FOURCC
(
'H'
,
'2'
,
'6'
,
'3'
):
case
VLC_FOURCC
(
'I'
,
'2'
,
'6'
,
'3'
):
case
VLC_FOURCC
(
'I'
,
'2'
,
'6'
,
'3'
):
case
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'3'
):
case
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'2'
):
case
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'2'
):
case
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'1'
):
case
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'1'
):
case
VLC_FOURCC
(
'D'
,
'I'
,
'V'
,
'3'
):
case
VLC_FOURCC
(
'D'
,
'I'
,
'V'
,
'3'
):
...
...
modules/mux/ogg.c
View file @
8c869070
...
@@ -357,6 +357,7 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
...
@@ -357,6 +357,7 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
case
VLC_FOURCC
(
'M'
,
'J'
,
'P'
,
'G'
):
case
VLC_FOURCC
(
'M'
,
'J'
,
'P'
,
'G'
):
case
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'1'
):
case
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'1'
):
case
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'2'
):
case
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'2'
):
case
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'3'
):
memcpy
(
p_stream
->
oggds_header
.
stream_type
,
"video"
,
5
);
memcpy
(
p_stream
->
oggds_header
.
stream_type
,
"video"
,
5
);
if
(
p_stream
->
i_fourcc
==
VLC_FOURCC
(
'm'
,
'p'
,
'4'
,
'v'
)
)
if
(
p_stream
->
i_fourcc
==
VLC_FOURCC
(
'm'
,
'p'
,
'4'
,
'v'
)
)
{
{
...
...
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