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
9803dc46
Commit
9803dc46
authored
Feb 27, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* vout_pictures.*: added YVU9.
parent
6ae1b0c0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
src/video_output/vout_pictures.c
src/video_output/vout_pictures.c
+3
-1
src/video_output/vout_pictures.h
src/video_output/vout_pictures.h
+2
-1
No files found.
src/video_output/vout_pictures.c
View file @
9803dc46
...
...
@@ -2,7 +2,7 @@
* vout_pictures.c : picture management functions
*****************************************************************************
* Copyright (C) 2000-2004 VideoLAN
* $Id: vout_pictures.c,v 1.4
6 2004/02/22 00:15:33 gbazin
Exp $
* $Id: vout_pictures.c,v 1.4
7 2004/02/27 14:01:35 fenrir
Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -528,6 +528,7 @@ void vout_InitFormat( video_frame_format_t *p_format, vlc_fourcc_t i_chroma,
p_format
->
i_bits_per_pixel
=
12
;
break
;
case
FOURCC_I410
:
case
FOURCC_YVU9
:
p_format
->
i_bits_per_pixel
=
9
;
break
;
case
FOURCC_Y211
:
...
...
@@ -596,6 +597,7 @@ void vout_InitPicture( vlc_object_t *p_this, picture_t *p_pic,
break
;
case
FOURCC_I410
:
case
FOURCC_YVU9
:
p_pic
->
p
[
Y_PLANE
].
i_lines
=
i_height
;
p_pic
->
p
[
Y_PLANE
].
i_pitch
=
i_width
;
p_pic
->
p
[
Y_PLANE
].
i_visible_pitch
=
p_pic
->
p
[
Y_PLANE
].
i_pitch
;
...
...
src/video_output/vout_pictures.h
View file @
9803dc46
...
...
@@ -2,7 +2,7 @@
* vout_pictures.h : picture management definitions
*****************************************************************************
* Copyright (C) 2002-2004 VideoLAN
* $Id: vout_pictures.h,v 1.
5 2004/01/06 12:02:06 zorglub
Exp $
* $Id: vout_pictures.h,v 1.
6 2004/02/27 14:01:35 fenrir
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -77,6 +77,7 @@
/* Planar YUV 4:1:0, Y:U:V */
#define FOURCC_I410 VLC_FOURCC('I','4','1','0')
#define FOURCC_YVU9 VLC_FOURCC('Y','V','U','9')
/* Planar Y, packed UV, from Matrox */
#define FOURCC_YMGA VLC_FOURCC('Y','M','G','A')
...
...
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