Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
67b83262
Commit
67b83262
authored
Jul 26, 2001
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed the MMX YUV plugin issues with gcc 2.96 and 3.0. * Updated TODO, cosmetic changes.
parent
7a9a6f5b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
15 deletions
+13
-15
TODO
TODO
+3
-3
extras/libdvdcss/css.c
extras/libdvdcss/css.c
+1
-3
plugins/dummy/input_dummy.c
plugins/dummy/input_dummy.c
+2
-2
plugins/yuv/transforms_yuvmmx.h
plugins/yuv/transforms_yuvmmx.h
+7
-7
No files found.
TODO
View file @
67b83262
...
@@ -22,7 +22,7 @@ Description: Win32 port
...
@@ -22,7 +22,7 @@ Description: Win32 port
Win32
is
probably
the
most
common
desktop
platform
,
we
should
support
it
Win32
is
probably
the
most
common
desktop
platform
,
we
should
support
it
as
well
.
Besides
,
most
students
at
Centrale
use
Windows
and
VideoLAN
was
as
well
.
Besides
,
most
students
at
Centrale
use
Windows
and
VideoLAN
was
originally
designed
for
them
.
originally
designed
for
them
.
Status
:
Todo
Status
:
Done
26
Apr
2001
(
gbazin
)
Task
:
0x5c
Task
:
0x5c
Difficulty
:
Medium
Difficulty
:
Medium
...
@@ -63,7 +63,7 @@ Difficulty: Medium
...
@@ -63,7 +63,7 @@ Difficulty: Medium
Urgency: Critical
Urgency: Critical
Description: Language and subtitles selection in network input
Description: Language and subtitles selection in network input
The vls will probably have to be modified as well.
The vls will probably have to be modified as well.
Status:
Todo
Status:
Done (henri)
Task: 0x57
Task: 0x57
Difficulty: Guru
Difficulty: Guru
...
@@ -95,7 +95,7 @@ Difficulty: Hard
...
@@ -95,7 +95,7 @@ Difficulty: Hard
Urgency: Wishlist
Urgency: Wishlist
Description: Hardware AC3 decoding
Description: Hardware AC3 decoding
Some soundcards directly grok Dolby AC3. This would spare a lot of CPU time.
Some soundcards directly grok Dolby AC3. This would spare a lot of CPU time.
Status:
Todo
Status:
Done (stef)
Task: 0x53
Task: 0x53
Difficulty: Medium
Difficulty: Medium
...
...
extras/libdvdcss/css.c
View file @
67b83262
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* css.c: Functions for DVD authentification and unscrambling
* css.c: Functions for DVD authentification and unscrambling
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* Copyright (C) 1999-2001 VideoLAN
* $Id: css.c,v 1.
5 2001/07/11 02:01:03
sam Exp $
* $Id: css.c,v 1.
6 2001/07/26 03:13:30
sam Exp $
*
*
* Author: Stphane Borel <stef@via.ecp.fr>
* Author: Stphane Borel <stef@via.ecp.fr>
*
*
...
@@ -262,8 +262,6 @@ int CSSInit( dvdcss_handle dvdcss )
...
@@ -262,8 +262,6 @@ int CSSInit( dvdcss_handle dvdcss )
return
-
1
;
return
-
1
;
}
}
fprintf
(
stderr
,
"DISK KEY: %02x %02x %02x %02x %02x
\n
"
,
p_buffer
[
0
],
p_buffer
[
1
],
p_buffer
[
2
],
p_buffer
[
3
],
p_buffer
[
4
]
);
/* Unencrypt disc key using bus key */
/* Unencrypt disc key using bus key */
for
(
i
=
0
;
i
<
2048
;
i
++
)
for
(
i
=
0
;
i
<
2048
;
i
++
)
{
{
...
...
plugins/dummy/input_dummy.c
View file @
67b83262
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* input_dummy.c: dummy input plugin, to manage "vlc:***" special options
* input_dummy.c: dummy input plugin, to manage "vlc:***" special options
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* Copyright (C) 2001 VideoLAN
* $Id: input_dummy.c,v 1.
3 2001/07/17 09:48:07 massiot
Exp $
* $Id: input_dummy.c,v 1.
4 2001/07/26 03:13:30 sam
Exp $
*
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Authors: Samuel Hocevar <sam@zoy.org>
*
*
...
@@ -128,7 +128,7 @@ static void DummyOpen( input_thread_t * p_input )
...
@@ -128,7 +128,7 @@ static void DummyOpen( input_thread_t * p_input )
if
(
(
i_len
<=
4
)
||
strncasecmp
(
psz_name
,
"vlc:"
,
4
)
)
if
(
(
i_len
<=
4
)
||
strncasecmp
(
psz_name
,
"vlc:"
,
4
)
)
{
{
/* If the
user specified "vlc:" then it's probably a file
*/
/* If the
command doesn't start with "vlc:" then it's not for us
*/
return
;
return
;
}
}
...
...
plugins/yuv/transforms_yuvmmx.h
View file @
67b83262
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* transforms_yuvmmx.h: MMX YUV transformation assembly
* transforms_yuvmmx.h: MMX YUV transformation assembly
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* Copyright (C) 1999, 2000 VideoLAN
* $Id: transforms_yuvmmx.h,v 1.
5 2001/07/01 08:49:09 gbazin
Exp $
* $Id: transforms_yuvmmx.h,v 1.
6 2001/07/26 03:13:30 sam
Exp $
*
*
* Authors: Olie Lho <ollie@sis.com.tw>
* Authors: Olie Lho <ollie@sis.com.tw>
* Gal Hendryckx <jimmy@via.ecp.fr>
* Gal Hendryckx <jimmy@via.ecp.fr>
...
@@ -129,14 +129,14 @@ paddsw %%mm6, %%mm2 # Y even + Cgreen 00 G6 00 G4 00 G2 00 G0 \n\
...
@@ -129,14 +129,14 @@ paddsw %%mm6, %%mm2 # Y even + Cgreen 00 G6 00 G4 00 G2 00 G0 \n\
paddsw %%mm7, %%mm5 # Y odd + Cgreen 00 G7 00 G5 00 G3 00 G1 \n\
paddsw %%mm7, %%mm5 # Y odd + Cgreen 00 G7 00 G5 00 G3 00 G1 \n\
\n\
\n\
# Limit RGB even to 0..255 \n\
# Limit RGB even to 0..255 \n\
packuswb %%mm0, %%mm0 # B6 B4 B2 B0
|
B6 B4 B2 B0 \n\
packuswb %%mm0, %%mm0 # B6 B4 B2 B0
/
B6 B4 B2 B0 \n\
packuswb %%mm1, %%mm1 # R6 R4 R2 R0
|
R6 R4 R2 R0 \n\
packuswb %%mm1, %%mm1 # R6 R4 R2 R0
/
R6 R4 R2 R0 \n\
packuswb %%mm2, %%mm2 # G6 G4 G2 G0
|
G6 G4 G2 G0 \n\
packuswb %%mm2, %%mm2 # G6 G4 G2 G0
/
G6 G4 G2 G0 \n\
\n\
\n\
# Limit RGB odd to 0..255 \n\
# Limit RGB odd to 0..255 \n\
packuswb %%mm3, %%mm3 # B7 B5 B3 B1
|
B7 B5 B3 B1 \n\
packuswb %%mm3, %%mm3 # B7 B5 B3 B1
/
B7 B5 B3 B1 \n\
packuswb %%mm4, %%mm4 # R7 R5 R3 R1
|
R7 R5 R3 R1 \n\
packuswb %%mm4, %%mm4 # R7 R5 R3 R1
/
R7 R5 R3 R1 \n\
packuswb %%mm5, %%mm5 # G7 G5 G3 G1
|
G7 G5 G3 G1 \n\
packuswb %%mm5, %%mm5 # G7 G5 G3 G1
/
G7 G5 G3 G1 \n\
\n\
\n\
# Interleave RGB even and odd \n\
# Interleave RGB even and odd \n\
punpcklbw %%mm3, %%mm0 # B7 B6 B5 B4 B3 B2 B1 B0 \n\
punpcklbw %%mm3, %%mm0 # B7 B6 B5 B4 B3 B2 B1 B0 \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