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
b1d89b15
Commit
b1d89b15
authored
Jun 01, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Backported fixes from MAIN.
parent
e4f6c3c4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
15 deletions
+18
-15
ChangeLog
ChangeLog
+6
-0
plugins/chroma/i420_yuy2.h
plugins/chroma/i420_yuy2.h
+7
-10
plugins/macosx/intf_vlc_wrapper.m
plugins/macosx/intf_vlc_wrapper.m
+5
-5
No files found.
ChangeLog
View file @
b1d89b15
...
...
@@ -4,6 +4,12 @@
HEAD
*
./
plugins
/
macosx
/
intf_vlc_wrapper
.
m
:
fix
for
non
-
ASCII
filenames
in
the
MacOS
X
interface
,
courtesy
of
Watanabe
Go
<
go
@
dsl
.
gr
.
jp
>.
*
./
plugins
/
chroma
/
i420_yuy2
.
h
:
fixed
an
old
overflow
bug
spotted
by
Rudolf
Cornelissen
.
*
./
plugins
/
chroma
/
i420_rgb16
.
c
:
fix
for
skewed
display
in
software
RV32
mode
,
courtesy
of
Pascal
Levesque
.
*
./
plugins
/
beos
/
InterfaceWindow
.
h
:
stopped
more
than
one
playlist
being
opened
.
*
./
plugins
/
beos
/
InterfaceWindow
.
cpp
:
fixed
segfault
on
exit
with
playlist
...
...
plugins/chroma/i420_yuy2.h
View file @
b1d89b15
...
...
@@ -2,7 +2,7 @@
* i420_yuy2.h : YUV to YUV conversion module for vlc
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: i420_yuy2.h,v 1.6
2002/05/22 21:05:18
sam Exp $
* $Id: i420_yuy2.h,v 1.6
.2.1 2002/06/01 11:38:07
sam Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -37,12 +37,12 @@ movl %%ebx,%9 \n\
"
#define MMX_INC " \n\
addl $
8, %0
\n\
addl $
8, %1
\n\
addl $
4
, %2 \n\
addl $
4
, %3 \n\
addl $
2
, %%eax \n\
addl $
2
, %%ebx \n\
addl $
16, %0
\n\
addl $
16, %1
\n\
addl $
8
, %2 \n\
addl $
8
, %3 \n\
addl $
4
, %%eax \n\
addl $
4
, %%ebx \n\
"
#define MMX_CALL(MMX_INSTRUCTIONS) \
...
...
@@ -51,9 +51,6 @@ addl $2, %%ebx \n\
".align 8 \n\t" \
MMX_INSTRUCTIONS \
MMX_INC \
".align 8 \n\t" \
MMX_INSTRUCTIONS \
MMX_INC \
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), \
...
...
plugins/macosx/intf_vlc_wrapper.m
View file @
b1d89b15
...
...
@@ -2,7 +2,7 @@
* intf_vlc_wrapper.c: MacOS X plugin for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: intf_vlc_wrapper.m,v 1.6
2002/05/19 23:51:37 massiot
Exp $
* $Id: intf_vlc_wrapper.m,v 1.6
.2.1 2002/06/01 11:38:07 sam
Exp $
*
* Authors: Florian G. Pflug <fgp@phlo.org>
* Jon Lech Johansen <jon-vl@nanocrew.net>
...
...
@@ -400,7 +400,7 @@ static Intf_VLCWrapper *o_intf = nil;
- (void)playlistAdd:(NSString *)o_filename
{
intf_PlaylistAdd( p_main->p_playlist, PLAYLIST_END,
[o_filename
lossyCString
] );
[o_filename
fileSystemRepresentation
] );
}
- (void)clearPlaylist
...
...
@@ -429,7 +429,7 @@ static Intf_VLCWrapper *o_intf = nil;
while
(
(
o_file
=
(
NSString
*
)[
o_enum
nextObject
]
)
)
{
intf_PlaylistAdd
(
p_main
->
p_playlist
,
PLAYLIST_END
,
[
o_file
lossyCString
]
);
[
o_file
fileSystemRepresentation
]
);
}
/* end current item, select first added item */
...
...
@@ -450,7 +450,7 @@ static Intf_VLCWrapper *o_intf = nil;
o_type
,
o_device
,
i_title
,
i_chapter
];
intf_PlaylistAdd
(
p_main
->
p_playlist
,
PLAYLIST_END
,
[
o_source
lossyCString
]
);
[
o_source
fileSystemRepresentation
]
);
/* stop current item, select added item */
if
(
p_input_bank
->
pp_input
[
0
]
!=
NULL
)
...
...
@@ -485,7 +485,7 @@ static Intf_VLCWrapper *o_intf = nil;
}
intf_PlaylistAdd
(
p_main
->
p_playlist
,
PLAYLIST_END
,
[
o_source
lossyCString
]
);
[
o_source
fileSystemRepresentation
]
);
intf_PlaylistJumpto
(
p_main
->
p_playlist
,
i_end
-
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