]> git.sesse.net Git - vlc/log
vlc
14 years agoDelete hopefully last leftover from menuconfig
Rémi Denis-Courmont [Tue, 9 Feb 2010 21:58:54 +0000 (23:58 +0200)]
Delete hopefully last leftover from menuconfig

14 years agoRemove cddax documentation as cddax was already removed
Rémi Denis-Courmont [Tue, 9 Feb 2010 21:56:42 +0000 (23:56 +0200)]
Remove cddax documentation as cddax was already removed

14 years agoRemove (very very) old Win32 cross-compilation howto
Rémi Denis-Courmont [Tue, 9 Feb 2010 21:54:30 +0000 (23:54 +0200)]
Remove (very very) old Win32 cross-compilation howto

Use INSTALL.win32 instead.

14 years agoRemove developer documentation, almost untouched in over 7 years
Rémi Denis-Courmont [Tue, 9 Feb 2010 21:52:03 +0000 (23:52 +0200)]
Remove developer documentation, almost untouched in over 7 years

14 years agoRemove Common Intermediate Language bindings
Rémi Denis-Courmont [Tue, 9 Feb 2010 21:43:30 +0000 (23:43 +0200)]
Remove Common Intermediate Language bindings

14 years agoDBus: ifdef buggy input code out
Rémi Denis-Courmont [Tue, 9 Feb 2010 21:34:00 +0000 (23:34 +0200)]
DBus: ifdef buggy input code out

14 years agoDBus: no need to lock playlist to add callbacks
Rémi Denis-Courmont [Tue, 9 Feb 2010 21:29:32 +0000 (23:29 +0200)]
DBus: no need to lock playlist to add callbacks

14 years agoaudioscrobbler: no need to lock playlist to add callbacks
Rémi Denis-Courmont [Tue, 9 Feb 2010 21:26:42 +0000 (23:26 +0200)]
audioscrobbler: no need to lock playlist to add callbacks

We already have the variables lock for that.

14 years agoaudioscrobbler: unused variables
Rémi Denis-Courmont [Tue, 9 Feb 2010 21:26:34 +0000 (23:26 +0200)]
audioscrobbler: unused variables

14 years agoMake update-po happy
Rémi Denis-Courmont [Tue, 9 Feb 2010 21:06:12 +0000 (23:06 +0200)]
Make update-po happy

14 years agoRevert "services_discovery: fix embedding translated longname into name"
Rémi Denis-Courmont [Tue, 9 Feb 2010 19:42:26 +0000 (21:42 +0200)]
Revert "services_discovery: fix embedding translated longname into name"

This fixes a buffer overflow and a warning.
This reverts commit caa08dce07c3b08677645263e325b33148f536bd.

14 years agoRemove out-dated Maemo 4 installation guide
Rémi Denis-Courmont [Tue, 9 Feb 2010 19:27:57 +0000 (21:27 +0200)]
Remove out-dated Maemo 4 installation guide

14 years agoRemove pl_Release, and rename pl_Hold back to pl_Get
Rémi Denis-Courmont [Tue, 9 Feb 2010 19:18:40 +0000 (21:18 +0200)]
Remove pl_Release, and rename pl_Hold back to pl_Get

pl_Hold() assumed the playlist was already created.
pl_Release() does not solve any problem. Playlist synchronization is
done with the playlist lock, while playlist deletion must anyway be done
after all interfaces, services and other threads are joined.

14 years agovout event: use var_GetAndSet
Rémi Denis-Courmont [Tue, 9 Feb 2010 18:09:50 +0000 (20:09 +0200)]
vout event: use var_GetAndSet

14 years agovar_GetAndSet: implement OR and NAND, return new value
Rémi Denis-Courmont [Tue, 9 Feb 2010 17:53:28 +0000 (19:53 +0200)]
var_GetAndSet: implement OR and NAND, return new value

14 years agoplaylist does not need a destructor
Rémi Denis-Courmont [Tue, 9 Feb 2010 17:15:29 +0000 (19:15 +0200)]
playlist does not need a destructor

14 years agoNo need to lock the playlist for meta fetch and preparsing
Rémi Denis-Courmont [Tue, 9 Feb 2010 17:08:13 +0000 (19:08 +0200)]
No need to lock the playlist for meta fetch and preparsing

The previous fix made the fetcher and preparser persistent throughout
the lifetime of the playlist. So we don't need to protect the pointers
anymore. Also, they are internally thread-safe (with their own lock).

14 years agoCreate preparser and fetcher immediately
Rémi Denis-Courmont [Tue, 9 Feb 2010 16:38:16 +0000 (18:38 +0200)]
Create preparser and fetcher immediately

They do not create threads anymore (unless they have work to do).

LibVLC needs this because we are sloppy programmers^W^W^W^Wit still
depends on the playlist for item meta infos (it should probably
instantiate the fetcher and preparser directly).

Also, do not create the preparser if there is no fetcher.

14 years agoFix warning (and maybe fix a bug too)
Rémi Denis-Courmont [Tue, 9 Feb 2010 18:05:32 +0000 (20:05 +0200)]
Fix warning (and maybe fix a bug too)

14 years agoEven Laurent makes horrible mistakes sometimes ;)
Rémi Denis-Courmont [Tue, 9 Feb 2010 17:27:11 +0000 (19:27 +0200)]
Even Laurent makes horrible mistakes sometimes ;)

14 years agoStick to the file's coding convention.
Antoine Cellerier [Tue, 9 Feb 2010 18:45:26 +0000 (19:45 +0100)]
Stick to the file's coding convention.

14 years ago__builtin_offsetof() needs gcc >= 4
Gildas Bazin [Tue, 9 Feb 2010 18:16:55 +0000 (18:16 +0000)]
__builtin_offsetof() needs gcc >= 4

14 years agoMore improvements to the hildon interface and make it compilable on non-maemo platforms
Gildas Bazin [Tue, 9 Feb 2010 18:13:31 +0000 (18:13 +0000)]
More improvements to the hildon interface and make it compilable on non-maemo platforms

14 years agoservices_discovery: fix embedding translated longname into name
Jakob Leben [Tue, 9 Feb 2010 18:00:45 +0000 (19:00 +0100)]
services_discovery: fix embedding translated longname into name

14 years agoQt: selector: correct expand-arrow position
Jakob Leben [Tue, 9 Feb 2010 17:42:11 +0000 (18:42 +0100)]
Qt: selector: correct expand-arrow position

14 years agoAllow pl_Hold from within pl_Deactivate
Rémi Denis-Courmont [Tue, 9 Feb 2010 16:24:40 +0000 (18:24 +0200)]
Allow pl_Hold from within pl_Deactivate

14 years agoSanitize output from str_format() before using it to build the snapshot's filename.
Antoine Cellerier [Tue, 9 Feb 2010 15:19:57 +0000 (16:19 +0100)]
Sanitize output from str_format() before using it to build the snapshot's filename.

14 years agoinput_item: post individual subitems later when posting the whole tree
Jakob Leben [Tue, 9 Feb 2010 14:56:34 +0000 (15:56 +0100)]
input_item: post individual subitems later when posting the whole tree

This makes the interface more comprehensible and allows for
input_item_node_Append[x] functions to be used for general node manipulation
without side effects, if needed in future.

14 years agoskins2: update to latest change in core
Erwan Tulou [Tue, 9 Feb 2010 09:58:27 +0000 (10:58 +0100)]
skins2: update to latest change in core

 - remove pf_run no longer in use
 - attach object as soon as possible to benefit var heritage

14 years agoQt: PLModel: simplify and fix current item update
Jakob Leben [Tue, 9 Feb 2010 03:56:14 +0000 (04:56 +0100)]
Qt: PLModel: simplify and fix current item update

14 years agoStability fix for the omxil decoder and make UYVY the default output format
Gildas Bazin [Tue, 9 Feb 2010 00:35:50 +0000 (00:35 +0000)]
Stability fix for the omxil decoder and make UYVY the default output format
for the video decoder on OMAP

14 years agoQt: polish location bar geometry
Jakob Leben [Mon, 8 Feb 2010 22:38:35 +0000 (23:38 +0100)]
Qt: polish location bar geometry

14 years agoFixed transform filter picture pitches usages.
Laurent Aimar [Mon, 8 Feb 2010 23:40:29 +0000 (00:40 +0100)]
Fixed transform filter picture pitches usages.

It should fix it when input and output pictures don't have the same
properties (close #3063).

14 years agoFixed typo in 192kHz case in flac packetizer.
Laurent Aimar [Mon, 8 Feb 2010 22:57:23 +0000 (23:57 +0100)]
Fixed typo in 192kHz case in flac packetizer.

14 years agoAdded 88.2/176.4/192 kHz samplerates support in flac demuxer (close #3144).
Laurent Aimar [Mon, 8 Feb 2010 22:47:40 +0000 (23:47 +0100)]
Added 88.2/176.4/192 kHz samplerates support in flac demuxer (close #3144).

14 years agoCompleted a bit meta data support in VLC (close #3280).
Laurent Aimar [Mon, 8 Feb 2010 22:32:48 +0000 (23:32 +0100)]
Completed a bit meta data support in VLC (close #3280).

14 years agoFixed es priority for teletext (ts).
Laurent Aimar [Mon, 8 Feb 2010 21:55:56 +0000 (22:55 +0100)]
Fixed es priority for teletext (ts).

It will avoid selecting a non subtitle page at the core levels.

14 years agoFixed no autoscale video mode (close #3246).
Laurent Aimar [Mon, 8 Feb 2010 21:40:43 +0000 (22:40 +0100)]
Fixed no autoscale video mode (close #3246).

14 years agoFix wrong size given to memset (found by coccinelle static analyzer).
Rémi Duraffort [Mon, 8 Feb 2010 21:10:00 +0000 (22:10 +0100)]
Fix wrong size given to memset (found by coccinelle static analyzer).

14 years agovcd: fix potential NULL-dereference (found with cocinnelle static analyser).
Rémi Duraffort [Mon, 8 Feb 2010 11:21:36 +0000 (12:21 +0100)]
vcd: fix potential NULL-dereference (found with cocinnelle static analyser).

14 years agoFix test_libvlc meta compilation.
Rémi Duraffort [Sat, 6 Feb 2010 16:42:31 +0000 (17:42 +0100)]
Fix test_libvlc meta compilation.

14 years agoQt: properly styled SearchLineEdit
Jakob Leben [Mon, 8 Feb 2010 21:21:22 +0000 (22:21 +0100)]
Qt: properly styled SearchLineEdit

And replaced QVLCIconLabel with QVLCFramelessButton.

14 years agoFixed J420/J422/J440/J444 definitions in fourcc.c
Laurent Aimar [Mon, 8 Feb 2010 20:40:43 +0000 (21:40 +0100)]
Fixed J420/J422/J440/J444 definitions in fourcc.c

14 years agoRemoved J410/J411 from fourcc.c
Laurent Aimar [Mon, 8 Feb 2010 20:39:50 +0000 (21:39 +0100)]
Removed J410/J411 from fourcc.c

They are not supported.

14 years agoFixed YV12 and added YV9 support to our swscale wrapper.
Laurent Aimar [Mon, 8 Feb 2010 20:39:00 +0000 (21:39 +0100)]
Fixed YV12 and added YV9 support to our swscale wrapper.

14 years agoAdded a few missing fourcc to rawvideo decoder.
Laurent Aimar [Mon, 8 Feb 2010 20:38:19 +0000 (21:38 +0100)]
Added a few missing fourcc to rawvideo decoder.

14 years agoAdded VLC_CODEC_YV9 and remove default mapping to I410 (close #3288).
Laurent Aimar [Mon, 8 Feb 2010 20:01:22 +0000 (21:01 +0100)]
Added VLC_CODEC_YV9 and remove default mapping to I410 (close #3288).

They are not the same as the chroma plane are swapped.

14 years agoFix VLM scheduling.
Antoine Cellerier [Mon, 8 Feb 2010 20:38:08 +0000 (21:38 +0100)]
Fix VLM scheduling.

14 years agoLua SD: fix for scripts without a description and ".luac" files
Fabio Ritrovato [Mon, 8 Feb 2010 20:24:14 +0000 (21:24 +0100)]
Lua SD: fix for scripts without a description and ".luac" files

14 years agoNEWS: fix typo .eve -> .exe
Ilkka Ollakka [Mon, 8 Feb 2010 20:22:15 +0000 (22:22 +0200)]
NEWS: fix typo .eve -> .exe

14 years agoFix for XCB_CURSOR_NONE undeclared issue
Gildas Bazin [Mon, 8 Feb 2010 20:06:10 +0000 (20:06 +0000)]
Fix for XCB_CURSOR_NONE undeclared issue

14 years agoLua SD: parse options
Fabio Ritrovato [Mon, 8 Feb 2010 19:36:46 +0000 (20:36 +0100)]
Lua SD: parse options

14 years agoLua SD: forgot to cast
Fabio Ritrovato [Mon, 8 Feb 2010 19:32:53 +0000 (20:32 +0100)]
Lua SD: forgot to cast

14 years agoFixed DVB-subtitles decoder subpicture flag.
Peter Bak Nielsen [Sun, 3 Jan 2010 18:52:21 +0000 (19:52 +0100)]
Fixed DVB-subtitles decoder subpicture flag.

  The module did not mark the subtitles it produces with "b_subtitle == true",
  which causes them to be handled as OSD, and thus allowing them to become
  out of sync unless video was streamed in real time...

Signed-off-by: Laurent Aimar <fenrir@videolan.org>
14 years agoFixed invalid access in file_select (lua).
Laurent Aimar [Mon, 8 Feb 2010 19:07:16 +0000 (20:07 +0100)]
Fixed invalid access in file_select (lua).

14 years agoFixed memleak.
Laurent Aimar [Sat, 6 Feb 2010 15:55:52 +0000 (16:55 +0100)]
Fixed memleak.

14 years agoLua SD: use a nicer icon for nodes
Fabio Ritrovato [Mon, 8 Feb 2010 18:55:43 +0000 (19:55 +0100)]
Lua SD: use a nicer icon for nodes

14 years agoosx/framework: removed unused property
Felix Paul Kühne [Mon, 8 Feb 2010 18:48:07 +0000 (19:48 +0100)]
osx/framework: removed unused property

14 years agofixed some typos in NEWS
Felix Paul Kühne [Mon, 8 Feb 2010 18:47:16 +0000 (19:47 +0100)]
fixed some typos in NEWS

14 years agoremoved the function catch_exception( ex ), as it is not needed anymore
Toralf Niebuhr [Mon, 8 Feb 2010 12:20:51 +0000 (13:20 +0100)]
removed the function catch_exception( ex ), as it is not needed anymore

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
14 years agoremoved unused exceptions
Toralf Niebuhr [Sun, 7 Feb 2010 13:01:41 +0000 (14:01 +0100)]
removed unused exceptions

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
14 years agoDon't announce the rework of the OS X ui as *cough* we won't ship it
Felix Paul Kühne [Mon, 8 Feb 2010 18:27:35 +0000 (19:27 +0100)]
Don't announce the rework of the OS X ui as *cough* we won't ship it

14 years agoFix typo in qt4 interface
Gildas Bazin [Mon, 8 Feb 2010 08:53:54 +0000 (08:53 +0000)]
Fix typo in qt4 interface

14 years agoFix harmless typo
Gildas Bazin [Mon, 8 Feb 2010 08:37:31 +0000 (08:37 +0000)]
Fix harmless typo

14 years agoRestore cursor when closing vout since the window doesn't belong to us
Gildas Bazin [Mon, 8 Feb 2010 08:33:26 +0000 (08:33 +0000)]
Restore cursor when closing vout since the window doesn't belong to us

14 years agoLua SD: fix another obvious leak
Jean-Philippe André [Mon, 8 Feb 2010 17:39:42 +0000 (18:39 +0100)]
Lua SD: fix another obvious leak

14 years agoLua SD: fix obvious leaks
Jean-Philippe André [Mon, 8 Feb 2010 16:34:27 +0000 (17:34 +0100)]
Lua SD: fix obvious leaks

+ Add missing include

14 years agoluasd: new SD related script functions
Fabio Ritrovato [Wed, 3 Feb 2010 22:45:51 +0000 (23:45 +0100)]
luasd: new SD related script functions

Signed-off-by: Jean-Philippe André <jpeg@videolan.org>
14 years agoadded VLC_UNUSED( ) for some unused variables
Toralf Niebuhr [Mon, 8 Feb 2010 16:36:12 +0000 (17:36 +0100)]
added VLC_UNUSED( ) for some unused variables

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
14 years agovlc_cond_init_daytime: condition variable with the wall clock
Rémi Denis-Courmont [Mon, 8 Feb 2010 16:46:02 +0000 (18:46 +0200)]
vlc_cond_init_daytime: condition variable with the wall clock

14 years agoSecond blind attempt at fixing linking with --disable-vlm
Antoine Cellerier [Mon, 8 Feb 2010 16:21:15 +0000 (17:21 +0100)]
Second blind attempt at fixing linking with --disable-vlm

14 years agoRemove leading underscores.
Antoine Cellerier [Mon, 8 Feb 2010 15:47:47 +0000 (16:47 +0100)]
Remove leading underscores.

14 years agoHonor the nointeract config option
Gildas Bazin [Sun, 7 Feb 2010 23:20:15 +0000 (23:20 +0000)]
Honor the nointeract config option

14 years agoMake the maemo interface a bit more useable
Gildas Bazin [Sun, 7 Feb 2010 23:02:49 +0000 (23:02 +0000)]
Make the maemo interface a bit more useable

14 years agoForgot to update these when adding the omxil module
Gildas Bazin [Sun, 7 Feb 2010 22:11:13 +0000 (22:11 +0000)]
Forgot to update these when adding the omxil module

14 years agoOMX IL needs libdl
Rémi Denis-Courmont [Sun, 7 Feb 2010 21:35:47 +0000 (23:35 +0200)]
OMX IL needs libdl

14 years agoAdd OpenMAX IL Video/Audio decoder.
Gildas Bazin [Sun, 7 Feb 2010 20:44:21 +0000 (20:44 +0000)]
Add OpenMAX IL Video/Audio decoder.
This decoder will try to use OpenMAX IL components to decode video/audio.
Only 2 OpenMAX cores are currently looked for. The TI OMAP IL core (used for
instance on the N900) and the Bellagio IL core.
This decoder is disabled by default (use --enable-omxil) and for now has
a zero priority (use --codec omxil).

14 years agoMaemo contribs: replace id3tag with taglib, add dirac, fluidsynth
Rémi Denis-Courmont [Sun, 7 Feb 2010 18:57:53 +0000 (20:57 +0200)]
Maemo contribs: replace id3tag with taglib, add dirac, fluidsynth

14 years agoContrib: disable not needed fluidsynth options
Rémi Denis-Courmont [Sun, 7 Feb 2010 18:49:57 +0000 (20:49 +0200)]
Contrib: disable not needed fluidsynth options

14 years agoWinCE: trivial compile fix
Rémi Denis-Courmont [Sun, 7 Feb 2010 18:11:34 +0000 (20:11 +0200)]
WinCE: trivial compile fix

14 years agoncurses compile fix
Rémi Denis-Courmont [Sun, 7 Feb 2010 18:03:26 +0000 (20:03 +0200)]
ncurses compile fix

14 years agoV4L: compile fix
Rémi Denis-Courmont [Sun, 7 Feb 2010 17:56:51 +0000 (19:56 +0200)]
V4L: compile fix

14 years agoCompile fix
Rémi Denis-Courmont [Sun, 7 Feb 2010 17:56:02 +0000 (19:56 +0200)]
Compile fix

P.S.: I don't like to include VLC headers in plugin-wide headers

14 years agoBlind compile fix
Rémi Denis-Courmont [Sun, 7 Feb 2010 17:50:29 +0000 (19:50 +0200)]
Blind compile fix

14 years agoRemove --enable-release which has no effects
Rémi Denis-Courmont [Sun, 7 Feb 2010 16:06:11 +0000 (18:06 +0200)]
Remove --enable-release which has no effects

14 years agoRemove unused vlc-config build mode macros
Rémi Denis-Courmont [Sun, 7 Feb 2010 16:03:05 +0000 (18:03 +0200)]
Remove unused vlc-config build mode macros

14 years agoWin32: strip ".libs" from libvlc path in any case
Rémi Denis-Courmont [Sun, 7 Feb 2010 16:00:26 +0000 (18:00 +0200)]
Win32: strip ".libs" from libvlc path in any case

That said, if someone really wants to support running vlc.exe from the
build tree, this is far from sufficient. I would suggest setting
data-path and plugin-path in static compilations of winvlc.c like we
already do for vlc.c instead.

14 years agoCompile fix
Rémi Denis-Courmont [Sun, 7 Feb 2010 14:47:26 +0000 (16:47 +0200)]
Compile fix

14 years agoUse vlc_dup
Rémi Denis-Courmont [Sun, 7 Feb 2010 13:54:39 +0000 (15:54 +0200)]
Use vlc_dup

14 years agovlc_dup: dup with close-on-exec
Rémi Denis-Courmont [Sun, 7 Feb 2010 13:51:35 +0000 (15:51 +0200)]
vlc_dup: dup with close-on-exec

14 years agoutf8_* -> vlc_* (sed roxxors)
Rémi Denis-Courmont [Sun, 7 Feb 2010 13:25:29 +0000 (15:25 +0200)]
utf8_* -> vlc_* (sed roxxors)

14 years agoSplit file path functions out of vlc_charset.h into vlc_fs.h
Rémi Denis-Courmont [Sun, 7 Feb 2010 13:18:02 +0000 (15:18 +0200)]
Split file path functions out of vlc_charset.h into vlc_fs.h

14 years agomessages: compilation fix for OS X
Felix Paul Kühne [Sun, 7 Feb 2010 11:59:09 +0000 (12:59 +0100)]
messages: compilation fix for OS X

14 years agoMisc: remove leading underscores
Rémi Denis-Courmont [Sun, 7 Feb 2010 11:16:52 +0000 (13:16 +0200)]
Misc: remove leading underscores

14 years agovout: remove leading underscores
Rémi Denis-Courmont [Sun, 7 Feb 2010 11:18:51 +0000 (13:18 +0200)]
vout: remove leading underscores

14 years agocommon: remove leading underscores
Rémi Denis-Courmont [Sun, 7 Feb 2010 11:13:09 +0000 (13:13 +0200)]
common: remove leading underscores

14 years agomodules: remove leading underscores
Rémi Denis-Courmont [Sun, 7 Feb 2010 11:11:26 +0000 (13:11 +0200)]
modules: remove leading underscores

14 years agoOSD: remoev leading underscores
Rémi Denis-Courmont [Sun, 7 Feb 2010 11:05:27 +0000 (13:05 +0200)]
OSD: remoev leading underscores

14 years agostream: remove leading underscores
Rémi Denis-Courmont [Sun, 7 Feb 2010 10:59:42 +0000 (12:59 +0200)]
stream: remove leading underscores

14 years agonet_Printf: automagic cast to VLC object
Rémi Denis-Courmont [Sun, 7 Feb 2010 10:53:56 +0000 (12:53 +0200)]
net_Printf: automagic cast to VLC object