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
4a2ea217
Commit
4a2ea217
authored
May 22, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./plugins/chroma/i420_yuy2.h: bugfix for the I420 to YUY2 MMX chroma
transformations, with the help of Pascal Levesque.
parent
0cd5d913
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
plugins/chroma/i420_yuy2.h
plugins/chroma/i420_yuy2.h
+3
-7
No files found.
plugins/chroma/i420_yuy2.h
View file @
4a2ea217
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* i420_yuy2.h : YUV to YUV conversion module for vlc
* i420_yuy2.h : YUV to YUV conversion module for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* Copyright (C) 2000, 2001 VideoLAN
* $Id: i420_yuy2.h,v 1.
5 2002/05/21 02:46:39
sam Exp $
* $Id: i420_yuy2.h,v 1.
6 2002/05/22 21:05:18
sam Exp $
*
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Authors: Samuel Hocevar <sam@zoy.org>
*
*
...
@@ -29,15 +29,11 @@ UNUSED_LONGLONG(woo_00ffw) = 0x00ff00ff00ff00ff;
...
@@ -29,15 +29,11 @@ UNUSED_LONGLONG(woo_00ffw) = 0x00ff00ff00ff00ff;
UNUSED_LONGLONG
(
woo_80w
)
=
0x0000000080808080
;
UNUSED_LONGLONG
(
woo_80w
)
=
0x0000000080808080
;
#define MMX_LOAD " \n\
#define MMX_LOAD " \n\
pushl %%ebx \n\
movl %8,%%eax \n\
movl %9,%%ebx \n\
movl %9,%%ebx \n\
"
"
#define MMX_SAVE " \n\
#define MMX_SAVE " \n\
movl %%eax,%8 \n\
movl %%ebx,%9 \n\
movl %%ebx,%9 \n\
popl %%ebx \n\
"
"
#define MMX_INC " \n\
#define MMX_INC " \n\
...
@@ -61,8 +57,8 @@ addl $2, %%ebx \n\
...
@@ -61,8 +57,8 @@ addl $2, %%ebx \n\
MMX_SAVE \
MMX_SAVE \
: "=c" (p_line1), "=d" (p_line2), "=D" (p_y1), "=S" (p_y2) \
: "=c" (p_line1), "=d" (p_line2), "=D" (p_y1), "=S" (p_y2) \
: "c" (p_line1), "d" (p_line2), "D" (p_y1), "S" (p_y2), \
: "c" (p_line1), "d" (p_line2), "D" (p_y1), "S" (p_y2), \
"
m
" (p_u), "m" (p_v) \
"
a
" (p_u), "m" (p_v) \
: "e
a
x", "memory" );
: "e
b
x", "memory" );
#define MMX_YUV420_YUYV " \n\
#define MMX_YUV420_YUYV " \n\
movq (%2), %%mm0 # Load 8 Y y7 y6 y5 y4 y3 y2 y1 y0 \n\
movq (%2), %%mm0 # Load 8 Y y7 y6 y5 y4 y3 y2 y1 y0 \n\
...
...
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