Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
74be690b
Commit
74be690b
authored
Jun 28, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for 2Vuy rawvideo. Patch from Ilkka Ollakka.
parent
b100f43e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/codec/rawvideo.c
modules/codec/rawvideo.c
+3
-1
No files found.
modules/codec/rawvideo.c
View file @
74be690b
...
@@ -107,7 +107,9 @@ static int OpenDecoder( vlc_object_t *p_this )
...
@@ -107,7 +107,9 @@ static int OpenDecoder( vlc_object_t *p_this )
case
VLC_FOURCC
(
'R'
,
'V'
,
'1'
,
'6'
):
case
VLC_FOURCC
(
'R'
,
'V'
,
'1'
,
'6'
):
case
VLC_FOURCC
(
'R'
,
'V'
,
'1'
,
'5'
):
case
VLC_FOURCC
(
'R'
,
'V'
,
'1'
,
'5'
):
break
;
break
;
case
VLC_FOURCC
(
'2'
,
'V'
,
'u'
,
'y'
):
p_dec
->
fmt_in
.
i_codec
=
VLC_FOURCC
(
'U'
,
'Y'
,
'V'
,
'Y'
);
break
;
case
VLC_FOURCC
(
'y'
,
'v'
,
'1'
,
'2'
):
case
VLC_FOURCC
(
'y'
,
'v'
,
'1'
,
'2'
):
p_dec
->
fmt_in
.
i_codec
=
VLC_FOURCC
(
'Y'
,
'V'
,
'1'
,
'2'
);
p_dec
->
fmt_in
.
i_codec
=
VLC_FOURCC
(
'Y'
,
'V'
,
'1'
,
'2'
);
break
;
break
;
...
...
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