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
ddabe8f7
Commit
ddabe8f7
authored
Sep 10, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./modules/misc/dummy/vout.c: fixed an endianness issue in the commandline
chroma parsing.
parent
849c0ed3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
modules/misc/dummy/vout.c
modules/misc/dummy/vout.c
+3
-6
No files found.
modules/misc/dummy/vout.c
View file @
ddabe8f7
...
...
@@ -2,7 +2,7 @@
* vout_dummy.c: Dummy video output display method for testing purposes
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: vout.c,v 1.
1 2002/08/04 17:23:43
sam Exp $
* $Id: vout.c,v 1.
2 2002/09/10 12:58:42
sam Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -77,11 +77,8 @@ static int Init( vout_thread_t *p_vout )
{
if
(
strlen
(
psz_chroma
)
>=
4
)
{
i_chroma
=
(
unsigned
char
)
psz_chroma
[
0
]
<<
0
;
i_chroma
|=
(
unsigned
char
)
psz_chroma
[
1
]
<<
8
;
i_chroma
|=
(
unsigned
char
)
psz_chroma
[
2
]
<<
16
;
i_chroma
|=
(
unsigned
char
)
psz_chroma
[
3
]
<<
24
;
i_chroma
=
VLC_FOURCC
(
psz_chroma
[
0
],
psz_chroma
[
1
],
psz_chroma
[
2
],
psz_chroma
[
3
]
);
b_chroma
=
1
;
}
...
...
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