]> git.sesse.net Git - vlc/log
vlc
14 years agohttp: add warning about locking
Jakob Leben [Fri, 11 Jun 2010 17:14:58 +0000 (19:14 +0200)]
http: add warning about locking

14 years agoredundant includes of vlc_playlist.h
Jakob Leben [Fri, 11 Jun 2010 17:11:59 +0000 (19:11 +0200)]
redundant includes of vlc_playlist.h

14 years agovlc_input_item.h is not self-sufficient without vlc_events.h
Jakob Leben [Fri, 11 Jun 2010 17:07:21 +0000 (19:07 +0200)]
vlc_input_item.h is not self-sufficient without vlc_events.h

14 years agoMatroska : Set default compression type for the ContentCompAlgo element to 0 (indicat...
Jai Menon [Fri, 11 Jun 2010 13:08:22 +0000 (18:38 +0530)]
Matroska : Set default compression type for the ContentCompAlgo element to 0 (indicating zlib). Some muxers (for example mkvmerge v4.0.0) do not write ebml elements which correspond to the default values (as defined in the spec).

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
14 years agoUpdate NEWS
Jean-Baptiste Kempf [Thu, 10 Jun 2010 22:56:42 +0000 (00:56 +0200)]
Update NEWS

14 years agoMozilla plugins: add some mime about RealFormat
Jean-Baptiste Kempf [Thu, 10 Jun 2010 21:45:14 +0000 (23:45 +0200)]
Mozilla plugins: add some mime about RealFormat

14 years agoSubtitles/SSA: enable reordering after load
Grigori Goronzy [Thu, 10 Jun 2010 21:44:26 +0000 (23:44 +0200)]
Subtitles/SSA: enable reordering after load

Use currently unused code to sort subtitle lines after they have been loaded.
Closes #3734.

14 years agoFixed ES packetized propertys in PVA demuxer (close #3735).
Laurent Aimar [Thu, 10 Jun 2010 22:06:38 +0000 (00:06 +0200)]
Fixed ES packetized propertys in PVA demuxer (close #3735).

14 years agoFixed the value of the dpb size that we got after requesting the vout display pool.
Laurent Aimar [Thu, 10 Jun 2010 21:22:01 +0000 (23:22 +0200)]
Fixed the value of the dpb size that we got after requesting the vout display pool.

14 years agoUpdated window size after changing fullscreen state (msw).
Laurent Aimar [Thu, 10 Jun 2010 20:57:53 +0000 (22:57 +0200)]
Updated window size after changing fullscreen state (msw).

It should improve the transition.

14 years agoRemoved wrong casts in msw.
Laurent Aimar [Thu, 10 Jun 2010 19:41:25 +0000 (21:41 +0200)]
Removed wrong casts in msw.

14 years agoFixed invalid mouse cursor state on win32 (close #3675).
Laurent Aimar [Thu, 10 Jun 2010 19:00:54 +0000 (21:00 +0200)]
Fixed invalid mouse cursor state on win32 (close #3675).

As a side effect, window class names are now uniques (process wide)
allowing to unregister them and so to unload properly the msw vouts.

14 years agoQt: Remove redundant code
Jean-Baptiste Kempf [Thu, 10 Jun 2010 21:25:06 +0000 (23:25 +0200)]
Qt: Remove redundant code

14 years agoWin32(core): do not duplicate handle
Erwan Tulou [Wed, 10 Feb 2010 12:19:42 +0000 (13:19 +0100)]
Win32(core): do not duplicate handle

Unlike _endthread and ExitThread, _endthreadex doesn't close the handle.
It is therefore up to the caller to close it. Hence no need for an extra
handle duplication (that mostly amounted to a memory leak when the normal
 path was used, i.e normal return from thread with implicit _endthreadex)

14 years agoWin32(core): _endthreadex(0) instead of _endthread()
Erwan Tulou [Wed, 10 Feb 2010 12:15:00 +0000 (13:15 +0100)]
Win32(core): _endthreadex(0) instead of _endthread()

According to msdn doc, _endthreadex(0) is to be used when thread is
 launched with _beginthreadex().

Note that when returning from the normal path, an implicit _endthreadex is
issued anyway.  It is important to be consistent whatever the path, since
those final functions (_endthread, ExitThread, _endthreadex) don't have
the same deallocation policy.

14 years agoFix description
Christophe Mutricy [Thu, 10 Jun 2010 19:46:00 +0000 (20:46 +0100)]
Fix description

14 years agoHonor LUAC passed by the user.
Christophe Mutricy [Thu, 10 Jun 2010 18:56:54 +0000 (19:56 +0100)]
Honor LUAC passed by the user.

As we use AC_PATH_PROG, if you want to force LUAC by specifying it on your command line you need to give a full path+exec_name. Which is a bit un friendly. So work-around this behaviour.

14 years agomsw: remove unneeded code and useless "shaking" of window
Erwan Tulou [Thu, 10 Jun 2010 19:04:49 +0000 (21:04 +0200)]
msw: remove unneeded code and useless "shaking" of window

For lack of a faster detection (based on win32 api messages),
resize/move of the parent window are detected in the Manage function
on a regular basis and acted upon if need be.

Move is an issue only for directx (surface doesn't automatically follow
the associated window). Though coordinates doesn't change, an UpdateRects
is still required to update the various rectangles used by directx.

As it was coded, everything was already taken care of.
The artificial "shaking" of the window was quite useless.

14 years agoBump the ABI.
Rémi Duraffort [Thu, 10 Jun 2010 19:42:06 +0000 (21:42 +0200)]
Bump the ABI.

14 years agoqt4: make dnd to accepts network-urls
Ilkka Ollakka [Thu, 10 Jun 2010 19:03:59 +0000 (22:03 +0300)]
qt4: make dnd to accepts network-urls

drop toNativeSeparators-usage (shoudln't break win32, but then again this could
be my application for the 'stupid win32 breakage of the year' ;). This allows
for example drag youtube links to vlc playlist directly.

Parse also dropper text if it has valid url if we don't have urls on drop ( from browser addressbar for example you get text ).

14 years agoplugins: allow to set more than one shortcut in on shot.
Rémi Duraffort [Thu, 10 Jun 2010 18:19:05 +0000 (20:19 +0200)]
plugins: allow to set more than one shortcut in on shot.

This is faster as we can now alloc the right size for the shortcuts array.

14 years agoAllow users to select Sinhala
Christophe Mutricy [Thu, 10 Jun 2010 18:29:12 +0000 (19:29 +0100)]
Allow users to select Sinhala

14 years agomsw: let zooming to exceed the display size
Erwan Tulou [Thu, 10 Jun 2010 16:19:48 +0000 (18:19 +0200)]
msw: let zooming to exceed the display size

There seems to be no more reason to force clipping to the display size
when zooming.  (tested successfully on WinXP with directx, gdi, opengl)

14 years agocore: fix a wrong division
Erwan Tulou [Thu, 10 Jun 2010 16:09:42 +0000 (18:09 +0200)]
core: fix a wrong division

Dividing an unsigned int by 2 is different from dividing an int by 2

This division was the cause for vlc(Win32) displaying a black screen
when zooming exceeded the display size (alt-'o')

Weirdly, there was no problem for Linux !!?? and also no regression :)

14 years agoIgnore unmute if volume hasn't been set or muted. fixes #3636
Francois Cartegnie [Tue, 8 Jun 2010 23:13:56 +0000 (01:13 +0200)]
Ignore unmute if volume hasn't been set or muted. fixes #3636

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
14 years agoplaylist: documentation update
Jakob Leben [Wed, 9 Jun 2010 17:39:01 +0000 (19:39 +0200)]
playlist: documentation update

14 years agoNEWS: mention about iconview/listview in qt4 between 1.0 and 1.1
Ilkka Ollakka [Wed, 9 Jun 2010 13:56:24 +0000 (16:56 +0300)]
NEWS: mention about iconview/listview in qt4 between 1.0 and 1.1

14 years agoSimplified/fixed qt4 fullscreen implementation.
Laurent Aimar [Tue, 8 Jun 2010 18:29:17 +0000 (20:29 +0200)]
Simplified/fixed qt4 fullscreen implementation.

 It removes the need of the reparentable widget (it is not needed
to reparent at all) and so simplify the code.
 It fixes win32 fullscreen support and improves win7 transitions.
 It avoids the need of an extra fullscreen widget, which is consistant
with the other media players I have tested.

14 years agoFix compilation
Rémi Denis-Courmont [Tue, 8 Jun 2010 20:05:28 +0000 (23:05 +0300)]
Fix compilation

14 years agolibvlc_media_player_stop: destroys the kept vout
Rémi Denis-Courmont [Tue, 8 Jun 2010 18:05:44 +0000 (21:05 +0300)]
libvlc_media_player_stop: destroys the kept vout

14 years agoExport input_resource_TerminateVout
Rémi Denis-Courmont [Tue, 8 Jun 2010 18:04:18 +0000 (21:04 +0300)]
Export input_resource_TerminateVout

LibVLC needs it.

14 years agoRemove VLC_VAR_LIST variable type
Rémi Denis-Courmont [Tue, 8 Jun 2010 18:03:11 +0000 (21:03 +0300)]
Remove VLC_VAR_LIST variable type

14 years agoprograms is a string, which is a string, which is not a list
Rémi Denis-Courmont [Tue, 8 Jun 2010 17:39:01 +0000 (20:39 +0300)]
programs is a string, which is a string, which is not a list

This fixes an assertion failure whenever --programs is used.
This should also fix a memory leak in the ES output.

This needs testing and backport to 1.1-bugfix.

14 years agoContrib: update zlib to 1.2.5
Jean-Baptiste Kempf [Tue, 8 Jun 2010 12:04:36 +0000 (14:04 +0200)]
Contrib: update zlib to 1.2.5

And patch it again and again...

14 years agoFix list of distributed nsid l10ns
Pierre Ynard [Tue, 8 Jun 2010 10:44:37 +0000 (12:44 +0200)]
Fix list of distributed nsid l10ns

14 years agoContribs: Update libxml to 2.7.7
Jean-Baptiste Kempf [Tue, 8 Jun 2010 10:39:57 +0000 (12:39 +0200)]
Contribs: Update libxml to 2.7.7

14 years agoContribs: remove unneeded change of CFLAGS for win32
Jean-Baptiste Kempf [Tue, 8 Jun 2010 10:19:21 +0000 (12:19 +0200)]
Contribs: remove unneeded change of CFLAGS for win32

14 years agoContribs: update libebml and libmatroska to 1.0.0
Jean-Baptiste Kempf [Tue, 8 Jun 2010 10:13:03 +0000 (12:13 +0200)]
Contribs: update libebml and libmatroska to 1.0.0

This hopefully should fix multiple issues with live webm files

14 years agoContrib: delete outdated patch
Jean-Baptiste Kempf [Tue, 8 Jun 2010 09:54:01 +0000 (11:54 +0200)]
Contrib: delete outdated patch

14 years agoContribs: portaudio, AC_CHECK_SIZEOF works now in Xcompile
Jean-Baptiste Kempf [Tue, 8 Jun 2010 09:53:28 +0000 (11:53 +0200)]
Contribs: portaudio, AC_CHECK_SIZEOF works now in Xcompile

14 years agolua: distribute extensions and missing playlist scripts
Pierre Ynard [Tue, 8 Jun 2010 09:03:58 +0000 (11:03 +0200)]
lua: distribute extensions and missing playlist scripts

Also sort the scripts by file name...

14 years agopulse: no need to check null in free
Ilkka Ollakka [Tue, 8 Jun 2010 05:37:50 +0000 (08:37 +0300)]
pulse: no need to check null in free

14 years agopulse: Use the 'user-agent' variable for the client name.
Colin Guthrie [Mon, 7 Jun 2010 23:34:43 +0000 (00:34 +0100)]
pulse: Use the 'user-agent' variable for the client name.

Signed-off-by: Ilkka Ollakka <ileoo@videolan.org>
14 years agoactivex: distribute missing header too
Pierre Ynard [Tue, 8 Jun 2010 03:52:42 +0000 (05:52 +0200)]
activex: distribute missing header too

14 years agoUPNP: Cleaned up code to match code conventions
Austin Burrow [Mon, 7 Jun 2010 23:10:18 +0000 (01:10 +0200)]
UPNP: Cleaned up code to match code conventions

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
14 years agoUPNP: Cleaned up code so it goes by the code conventions.
Austin Burrow [Thu, 3 Jun 2010 21:59:50 +0000 (16:59 -0500)]
UPNP: Cleaned up code so it goes by the code conventions.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
14 years agoDistribute nsis l10ns
Christophe Mutricy [Mon, 7 Jun 2010 21:19:49 +0000 (22:19 +0100)]
Distribute nsis l10ns

14 years agoQt4: raise the fullscreen widget when it is shown
Rémi Denis-Courmont [Mon, 7 Jun 2010 21:07:11 +0000 (00:07 +0300)]
Qt4: raise the fullscreen widget when it is shown

14 years agoContribs: take libvpx GIT and not the tarballs
Jean-Baptiste Kempf [Mon, 7 Jun 2010 20:16:22 +0000 (22:16 +0200)]
Contribs: take libvpx GIT and not the tarballs

Because now the license is ok. And update the patches on ffmpeg

14 years agoQt4: turn off video and subs when transcoding to pure audio profile
Rémi Denis-Courmont [Mon, 7 Jun 2010 18:33:23 +0000 (21:33 +0300)]
Qt4: turn off video and subs when transcoding to pure audio profile

This fixes #3681

14 years agoDistribute missing header
Pierre Ynard [Mon, 7 Jun 2010 18:08:10 +0000 (20:08 +0200)]
Distribute missing header

14 years agoQt4: remove PaintOnScreen option - fixes #3702
Rémi Denis-Courmont [Mon, 7 Jun 2010 17:56:12 +0000 (20:56 +0300)]
Qt4: remove PaintOnScreen option - fixes #3702

14 years agoOnly print the first 5 threading errors each
Rémi Denis-Courmont [Mon, 7 Jun 2010 17:42:49 +0000 (20:42 +0300)]
Only print the first 5 threading errors each

14 years agol10n: Ukrainian update
Oleksandr Natalenko [Sun, 6 Jun 2010 22:36:19 +0000 (23:36 +0100)]
l10n: Ukrainian update

Signed-off-by: Christophe Mutricy <xtophe@videolan.org>
14 years agoEstionian l10n for the win installer
Mihkel [Sun, 6 Jun 2010 22:12:25 +0000 (23:12 +0100)]
Estionian l10n for the win installer

Signed-off-by: Christophe Mutricy <xtophe@videolan.org>
14 years agovar_InheritInteger -> var_InheritBool
Rémi Denis-Courmont [Sun, 6 Jun 2010 21:25:10 +0000 (00:25 +0300)]
var_InheritInteger -> var_InheritBool

14 years agoAdded a missing vlc_join() in vout.
Laurent Aimar [Thu, 3 Jun 2010 22:38:32 +0000 (00:38 +0200)]
Added a missing vlc_join() in vout.

14 years agoLua: Allocine, grow buffer up to 500k
Jean-Philippe André [Sun, 6 Jun 2010 10:17:29 +0000 (18:17 +0800)]
Lua: Allocine, grow buffer up to 500k

This seems a lot, but 65k definitively ain't enough for some
movies.

14 years agoappletrailers: fix location finding
Ilkka Ollakka [Sun, 6 Jun 2010 09:20:01 +0000 (12:20 +0300)]
appletrailers: fix location finding

14 years agoLua: remove 'http' shortcut.
Jean-Philippe André [Sun, 6 Jun 2010 05:44:36 +0000 (13:44 +0800)]
Lua: remove 'http' shortcut.

Since 6bb9f2996 (or master/1834c5a73e) it was not possible to load
luahttp using this shortcut anyway.

14 years agolive: update inet_ntop patch
Rémi Denis-Courmont [Sat, 5 Jun 2010 21:40:37 +0000 (00:40 +0300)]
live: update inet_ntop patch

14 years agoqt4: don't scale to 720p on webm profile
Ilkka Ollakka [Sat, 5 Jun 2010 20:19:38 +0000 (23:19 +0300)]
qt4: don't scale to 720p on webm profile

Which was wrong way anyway.

14 years agoavcodec: fix vp8 default to check height for 720p
Ilkka Ollakka [Sat, 5 Jun 2010 20:18:08 +0000 (23:18 +0300)]
avcodec: fix vp8 default to check height for 720p

also fix sub 720p defaults

14 years agoSpelling
Pierre Ynard [Sat, 5 Jun 2010 17:04:44 +0000 (19:04 +0200)]
Spelling

14 years agoPlaylist: Allow pausing the playback using space.
Hugo Beauzée-Luyssen [Sat, 5 Jun 2010 13:35:14 +0000 (15:35 +0200)]
Playlist: Allow pausing the playback using space.

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
14 years agoOld RC: correct inherited boolean variables
Rémi Denis-Courmont [Sat, 5 Jun 2010 13:36:46 +0000 (16:36 +0300)]
Old RC: correct inherited boolean variables

14 years agoAdd version to footer alongside the copyright message
Confused Vorlon [Fri, 28 May 2010 14:36:36 +0000 (15:36 +0100)]
Add version to footer alongside the copyright message

(as with old http interface). Also added '-Lua Web Interface-'.

Adding the '-Lua Web Interface-' will give an easy way for applications to tell whether they are dealing with the old or new interfaces. The commands are somewhat different, so this is important.

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
14 years agoMark rtsp-kasenna as safe
Greg Farrell [Sat, 5 Jun 2010 13:20:53 +0000 (16:20 +0300)]
Mark rtsp-kasenna as safe

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
14 years agoqt4: add vp80/webm to profiles
Ilkka Ollakka [Sat, 5 Jun 2010 11:18:44 +0000 (14:18 +0300)]
qt4: add vp80/webm to profiles

VP8/webm profile defaults to 720p, which could be reasonable default imo.
Not sure if people want to it to default to same resolution as input is.

14 years agoavcodec: default gop=120 for vp80
Ilkka Ollakka [Sat, 5 Jun 2010 11:16:18 +0000 (14:16 +0300)]
avcodec: default gop=120 for vp80

14 years agoavcodec: fix typo
Ilkka Ollakka [Sat, 5 Jun 2010 10:43:27 +0000 (13:43 +0300)]
avcodec: fix typo

14 years agoRemove promiscuous #include <vlc_common.h>
Rémi Denis-Courmont [Sat, 5 Jun 2010 10:24:09 +0000 (13:24 +0300)]
Remove promiscuous #include <vlc_common.h>

14 years agoSpelling
Rémi Denis-Courmont [Sat, 5 Jun 2010 10:18:00 +0000 (13:18 +0300)]
Spelling

14 years agoRemove left over HAVE_GETADDRINFO, fix ACL regression (1.2 only)
Rémi Denis-Courmont [Sat, 5 Jun 2010 10:10:09 +0000 (13:10 +0300)]
Remove left over HAVE_GETADDRINFO, fix ACL regression (1.2 only)

14 years agoXlib: fix build (skins2) - Part 1/2: fix include
Jean-Philippe André [Fri, 4 Jun 2010 12:00:42 +0000 (20:00 +0800)]
Xlib: fix build (skins2) - Part 1/2: fix include

14 years agoXlib: fix build (skins2) - Part 2/2: cast vlc_object
Jean-Philippe André [Fri, 4 Jun 2010 12:01:15 +0000 (20:01 +0800)]
Xlib: fix build (skins2) - Part 2/2: cast vlc_object

14 years agoLua: update Allociné script & remove debug
Jean-Philippe André [Fri, 4 Jun 2010 11:11:39 +0000 (19:11 +0800)]
Lua: update Allociné script & remove debug

14 years agoTypos
Rémi Denis-Courmont [Sat, 5 Jun 2010 08:10:50 +0000 (11:10 +0300)]
Typos

14 years agoUpdated German translation of the Win32 installer by Mario Siegmann and me.
Felix Paul Kühne [Fri, 4 Jun 2010 22:16:27 +0000 (00:16 +0200)]
Updated German translation of the Win32 installer by Mario Siegmann and me.

Manual forward-port of [41c69be0dd9f7cdf6cc791e7f9064fdd748eb988]

14 years agolive: updated patch
Felix Paul Kühne [Fri, 4 Jun 2010 19:16:58 +0000 (21:16 +0200)]
live: updated patch

14 years agolibdvdnav: updated patch
Felix Paul Kühne [Fri, 4 Jun 2010 19:13:28 +0000 (21:13 +0200)]
libdvdnav: updated patch

14 years agoyoutube.lua: remove old broken break
Pierre Ynard [Fri, 4 Jun 2010 17:10:11 +0000 (19:10 +0200)]
youtube.lua: remove old broken break

We don't want that anymore anyway

14 years agoyoutube.lua: support WebM formats
Pierre Ynard [Fri, 4 Jun 2010 16:51:09 +0000 (18:51 +0200)]
youtube.lua: support WebM formats

We parse the additional HTML5 section too, the only place where the
WebM formats are listed. If the URL contains "&html5=True", the WebM
formats are preferred, when available.

14 years agoQt4: do not set fullscreen window on top (fixes #3712)
Rémi Denis-Courmont [Fri, 4 Jun 2010 15:15:45 +0000 (18:15 +0300)]
Qt4: do not set fullscreen window on top (fixes #3712)

Normally, the window will go on top of the stack of normal windows
anyway. If not, we may need to force this, which is different from
always-on-top in any case.

Known issue: toggling video on top while in fullscreen is not
implemented yet.

14 years agoyoutube.lua: fetch HD videos when available by default
Pierre Ynard [Fri, 4 Jun 2010 14:19:14 +0000 (16:19 +0200)]
youtube.lua: fetch HD videos when available by default

This also saves one HTTP redirect

14 years agoqt4: don't hardcode fontsize in epgitem
Ilkka Ollakka [Fri, 4 Jun 2010 13:27:00 +0000 (16:27 +0300)]
qt4: don't  hardcode fontsize in epgitem

14 years agoCompilation fix.
Laurent Aimar [Thu, 3 Jun 2010 21:54:04 +0000 (23:54 +0200)]
Compilation fix.

14 years agoAdded missing subpicture_Update.
Laurent Aimar [Thu, 3 Jun 2010 21:04:42 +0000 (23:04 +0200)]
Added missing subpicture_Update.

14 years agoFix missing lock in 440126cfb7322950d14f7029dd424c4f4bd41ad
Rémi Denis-Courmont [Thu, 3 Jun 2010 21:10:35 +0000 (00:10 +0300)]
Fix missing lock in 440126cfb7322950d14f7029dd424c4f4bd41ad

14 years agoProtect XInitThreads() with a global lock
Rémi Denis-Courmont [Thu, 3 Jun 2010 20:55:27 +0000 (23:55 +0300)]
Protect XInitThreads() with a global lock

14 years agogcrypt: use vlc_global_mutex
Rémi Denis-Courmont [Thu, 3 Jun 2010 20:29:35 +0000 (23:29 +0300)]
gcrypt: use vlc_global_mutex

This saves a few mutexes, but it does not really solve gcrypt
reentrancy. gcry_control() should only be called once for all per copy
of gcrypt in the memory. This is hard to conciliate with dlopen().

14 years agoavcodec: use vlc_global_mutex
Rémi Denis-Courmont [Thu, 3 Jun 2010 20:29:24 +0000 (23:29 +0300)]
avcodec: use vlc_global_mutex

14 years agovlc_global_mutex: common functions for process-wide mutexes
Rémi Denis-Courmont [Thu, 3 Jun 2010 20:25:31 +0000 (23:25 +0300)]
vlc_global_mutex: common functions for process-wide mutexes

14 years agoCalled XInitThreads in vaapi.
Laurent Aimar [Thu, 3 Jun 2010 18:59:13 +0000 (20:59 +0200)]
Called XInitThreads in vaapi.

14 years agoCheck "xlib" before trying vaapi.
Laurent Aimar [Thu, 3 Jun 2010 18:57:47 +0000 (20:57 +0200)]
Check "xlib" before trying vaapi.

14 years agoMoved generic subpicture code to its own file.
Laurent Aimar [Mon, 31 May 2010 18:28:55 +0000 (20:28 +0200)]
Moved generic subpicture code to its own file.

14 years agoatmo: updated README.txt for Fnordlicht, added author to THANKS
André Weber [Thu, 3 Jun 2010 17:31:40 +0000 (19:31 +0200)]
atmo: updated README.txt for Fnordlicht, added author to THANKS

14 years agolibvlc_set_*_input also works on Win32 nowadays
Rémi Denis-Courmont [Thu, 3 Jun 2010 18:26:10 +0000 (21:26 +0300)]
libvlc_set_*_input also works on Win32 nowadays

14 years agoatmo: add support for Fnordlicht devices
Kai Lauterbach [Thu, 3 Jun 2010 17:21:52 +0000 (19:21 +0200)]
atmo: add support for Fnordlicht devices

The Fnordlicht-Class implements only parts of the fnordlicht-protocol:
sync, stop, start_bootloader, boot_enter_application and fade_rgb
Have a look at http://github.com/fd0/fnordlicht/raw/master/doc/PROTOCOL
for more details.

Signed-off-by: André Weber <atmo@videolan.org>
14 years agoQT4: Connect INPUT_EVENT_ITEM_EPG to update epg-widget via inputmanager
Ilkka Ollakka [Thu, 3 Jun 2010 15:59:51 +0000 (18:59 +0300)]
QT4: Connect INPUT_EVENT_ITEM_EPG to update epg-widget via inputmanager

Now epg-content should update automaticly when user changes channel etc.