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
641341e8
Commit
641341e8
authored
Aug 07, 2001
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Updated version number to 0.2.82. * Updated ChangeLog. * Fixed a typo in Makefile.dep.
parent
6b933b9e
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
72 additions
and
6 deletions
+72
-6
AUTHORS
AUTHORS
+4
-0
ChangeLog
ChangeLog
+52
-0
Makefile.dep
Makefile.dep
+1
-1
configure
configure
+1
-1
configure.in
configure.in
+1
-1
debian/changelog
debian/changelog
+7
-0
debian/control
debian/control
+1
-1
vlc.spec
vlc.spec
+5
-2
No files found.
AUTHORS
View file @
641341e8
...
...
@@ -181,6 +181,10 @@ N: Olivier Pomel
E: pomel@via.ecp.fr
C: pomel
N: Steven M. Schultz
E: sms@TO.GD-ES.COM
D: BSD/OS port
N: Vincent Seguin
E: seguin@via.ecp.fr
C: seguin
...
...
ChangeLog
View file @
641341e8
...
...
@@ -3,6 +3,58 @@
#===================#
HEAD
*
Nothing
yet
.
0.2.82
Tue
,
7
Aug
2001
12
:
39
:
16
+
0200
*
Got
Makefile
to
launch
./
configure
almost
properly
.
$(
MAKECMDGOALS
)
rules
!
*
Various
debian
scripts
fixes
.
*
Added
-
lmsvcrt40
to
the
win32
flags
for
proper
execution
under
Wine
.
*
Fixed
broken
soname
setting
under
Solaris
(
and
OS
X
,
sort
of
).
*
Made
the
illegal
instruction
report
more
explicit
.
*
BSD
/
OS
4.3
beta1
fixes
by
Steven
M
.
Schultz
<
sms
@
TO
.
GD
-
ES
.
COM
>.
*
Fixed
the
sdl
video
output
plugin
that
was
broken
2
days
ago
.
*
libdvdcss
*
packages
are
now
a
bit
more
policy
-
compliant
.
*
Tidied
the
snapshot
-*
Makefile
rules
.
*
Tidied
the
modules
Makefiles
.
*
Removed
useless
stuff
in
the
debian
/
directory
.
*
Removed
the
"make all"
kludge
in
the
Makefile
.
opts
rule
.
I
hope
this
patch
is
harmless
on
all
systems
.
*
Added
a
dummy
libdvdcss
so
that
the
DVD
plugin
can
be
used
without
libdvdcss
.
It
will
try
to
dlopen
()
libdvdcss
at
runtime
,
though
,
and
will
use
the
dummy
functions
only
if
it
couldn
't find a valid
libdvdcss. This is probably only useful to package maintainers.
* Made the remote command plugin usable even with no stream.
* Fixed a deadlock in the remote command plugin.
* Fixed a deadlock in the SPU decoder.
* Minor bug fix to aout_directx.c.
* Big rewrite of the DirectX audio plugin. The audio output is now (almost)
perfect on Win32.
* Fixed a bug in ac3dec_CreateThread() in ac3_decoder_thread.
* On Win32, open() will now open files in binary mode by default.
* A few minor changes to vout_xvideo.c.
* Fixed a segfault in yuv_End() in video_yuvmmx.c.
* Fixed the "Gdk-ERROR **: BadCursor" bug in the x11 and xvideo plugins.
* Fixed a segfault in SetBufferPicture() in video_output.c.
* Fixed a segfault in PSEnd in input_ps.c.
* The video decoder thread is now also reniced to a lower priority on
Win32 (like in the Linux version). This slightly increases the
responsiveness of vlc.
* Fixed a Win32 bug in libdvdcss. This bug was appearing on title change.
* Modified input_dvd so you can now go directly to the selected chapter
when you change the title.
* Implemented the Probe function in the Xvideo plugin. Xvideo is now the
default video output plugin when it is supported.
* Now use SDL_CFLAGS for searching SDL/SDL.h.
* Don'
t
miserably
die
in
`
make
`
when
./
configure
hasn
't be run.
* Fixed a bug when compiling KDE plug-in without Qt plug-in.
* Now taking into account $KDEDIR.
* Made SDL configure error messages more explicit.
* --disable-sdl is now correctly taken into account.
* Changed the order of evaluation of sdl-config and sdl11-config.
* Finally fixed SDL*/SDL.h check.
* VC++/Intel compiler fixes by Jon Lech Johansen <jon-vl@nanocrew.net>.
* Better gtk-config detection.
* Removed duplicate checks in configure.in.
...
...
Makefile.dep
View file @
641341e8
...
...
@@ -54,7 +54,7 @@ $(C_DEP): .dep/%.d: %.c
[ -s $@ ] || rm -f $@'
$(CPP_DEP)
:
.dep/%.dpp: %.cpp
@
test
-d
.dep/
$(
dir
$*
)
||
mkdir
-p
$(
shell
dirname
.dep/
$
$
*
)
@
test
-d
.dep/
$(
dir
$*
)
||
mkdir
-p
$(
shell
dirname
.dep/
$*
)
@
echo
"regenerating dependencies for
$*
.c"
@
$(SHELL)
-ec
'
$(CC)
$(DCFLAGS)
$(CFLAGS)
$(DEFINE)
2>/dev/null $< \
| sed '
\'
's/
$(
subst
.,\.,
$(
notdir
$*
))
\.o[ :]*/
$(
subst
/,\/,$*
)
.o \
...
...
configure
View file @
641341e8
...
...
@@ -635,7 +635,7 @@ echo "$ac_t""$host" 1>&6
HAVE_VLC
=
0
if
test
-r
src/interface/main.c
;
then
HAVE_VLC
=
1
VLC_VERSION
=
0.2.8
1
VLC_VERSION
=
0.2.8
2
VLC_CODENAME
=
Ourumov
...
...
configure.in
View file @
641341e8
...
...
@@ -7,7 +7,7 @@ AC_CANONICAL_HOST
HAVE_VLC=0
if test -r src/interface/main.c; then
HAVE_VLC=1
VLC_VERSION=0.2.8
1
VLC_VERSION=0.2.8
2
AC_SUBST(VLC_VERSION)
VLC_CODENAME=Ourumov
AC_SUBST(VLC_CODENAME)
...
...
debian/changelog
View file @
641341e8
vlc (0.2.82-1) unstable; urgency=low
* New upstream release.
* Fixed broken manpage symlinks (Closes: #99561).
-- Samuel Hocevar <sam@zoy.org> Tue, 7 Aug 2001 12:39:16 +0200
vlc (0.2.81-1) unstable; urgency=low
* New upstream release.
...
...
debian/control
View file @
641341e8
...
...
@@ -8,7 +8,7 @@ Standards-Version: 3.0.1
Package: vlc
Architecture: any
Depends: ${shlibs:Depends}, vlc-gui
Suggests: vlc-sdl, vlc-
esd, vlc-
gnome
Suggests: vlc-sdl, vlc-gnome
Description: a free MPEG and DVD player
VideoLAN is a free MPEG, MPEG2 and DVD software solution.
.
...
...
vlc.spec
View file @
641341e8
Name: vlc
Version: 0.2.8
1
Version: 0.2.8
2
Release: 1
License: GPL
Url: http://www.videolan.org/
Group: X11/Applications/Graphics
Source0: http://www.videolan.org/packages/0.2.8
1/vlc-0.2.81
.tar.gz
Source0: http://www.videolan.org/packages/0.2.8
2/vlc-0.2.82
.tar.gz
Prefix: /usr
Packager: Samuel Hocevar <sam@zoy.org>
...
...
@@ -13,6 +13,9 @@ Summary: VideoLAN Client.
Summary(fr): Client VideoLAN.
%changelog
* Tue Aug 7 2001 Samuel Hocevar <sam@zoy.org>
New upstream release (0.2.82)
* Sat Jul 28 2001 Samuel Hocevar <sam@zoy.org>
New upstream release (0.2.81)
...
...
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