Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
5718c840
Commit
5718c840
authored
Jan 12, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support for 8bit uncompressed in AVI files.
parent
6a8456a6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
0 deletions
+6
-0
modules/codec/rawvideo.c
modules/codec/rawvideo.c
+1
-0
modules/demux/avi/avi.c
modules/demux/avi/avi.c
+3
-0
modules/video_chroma/grey_yuv.c
modules/video_chroma/grey_yuv.c
+2
-0
No files found.
modules/codec/rawvideo.c
View file @
5718c840
...
...
@@ -101,6 +101,7 @@ static int OpenDecoder( vlc_object_t *p_this )
/* Packed YUV */
case
VLC_FOURCC
(
'Y'
,
'U'
,
'Y'
,
'2'
):
case
VLC_FOURCC
(
'Y'
,
'8'
,
'0'
,
'0'
):
case
VLC_FOURCC
(
'U'
,
'Y'
,
'V'
,
'Y'
):
case
VLC_FOURCC
(
'H'
,
'D'
,
'Y'
,
'C'
):
...
...
modules/demux/avi/avi.c
View file @
5718c840
...
...
@@ -438,6 +438,9 @@ static int Open( vlc_object_t * p_this )
case
9
:
tk
->
i_codec
=
VLC_FOURCC
(
'Y'
,
'V'
,
'U'
,
'9'
);
/* <- TODO check that */
break
;
case
8
:
tk
->
i_codec
=
VLC_FOURCC
(
'Y'
,
'8'
,
'0'
,
'0'
);
break
;
}
es_format_Init
(
&
fmt
,
VIDEO_ES
,
tk
->
i_codec
);
...
...
modules/video_chroma/grey_yuv.c
View file @
5718c840
...
...
@@ -64,6 +64,8 @@ static int Activate( vlc_object_t *p_this )
switch
(
p_vout
->
render
.
i_chroma
)
{
case
VLC_FOURCC
(
'Y'
,
'8'
,
'0'
,
'0'
):
p_vout
->
render
.
i_chroma
=
VLC_FOURCC
(
'G'
,
'R'
,
'E'
,
'Y'
);
case
VLC_FOURCC
(
'G'
,
'R'
,
'E'
,
'Y'
):
switch
(
p_vout
->
output
.
i_chroma
)
{
...
...
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