]> git.sesse.net Git - vlc/log
vlc
14 years agophonon: fix compilation.
Rémi Duraffort [Thu, 28 Jan 2010 09:06:33 +0000 (10:06 +0100)]
phonon: fix compilation.

14 years agoQt: views behavior corrections
Jakob Leben [Thu, 28 Jan 2010 07:57:00 +0000 (08:57 +0100)]
Qt: views behavior corrections

Only respond to input item change if in icon view.
Update location bar according to current view.

14 years agoQt: playlist (Fix #3248) Set model after sorting enabled to prevent sorting immediately
Jakob Leben [Thu, 28 Jan 2010 07:36:00 +0000 (08:36 +0100)]
Qt: playlist (Fix #3248) Set model after sorting enabled to prevent sorting immediately

And add a debug msg when sorting happens.

14 years agoQt: connect to iconView only after it has been created
Jakob Leben [Thu, 28 Jan 2010 06:56:09 +0000 (07:56 +0100)]
Qt: connect to iconView only after it has been created

14 years agolua/http: use h264 in flash-streaming
Ilkka Ollakka [Thu, 28 Jan 2010 06:03:37 +0000 (08:03 +0200)]
lua/http: use h264 in flash-streaming

14 years agoQt: replace playlist view title with interactive location bar
Jakob Leben [Thu, 28 Jan 2010 05:52:04 +0000 (06:52 +0100)]
Qt: replace playlist view title with interactive location bar

14 years agoQt: make PLModel::getItem return rootItem as well, add id getter to PLItem
Jakob Leben [Thu, 28 Jan 2010 05:50:35 +0000 (06:50 +0100)]
Qt: make PLModel::getItem return rootItem as well, add id getter to PLItem

14 years agoEPG: fix QLabel look and saveGeometry
Jean-Baptiste Kempf [Thu, 28 Jan 2010 02:29:29 +0000 (03:29 +0100)]
EPG: fix QLabel look and saveGeometry

14 years agoQt: Comment out left qDebug()
Jean-Baptiste Kempf [Thu, 28 Jan 2010 02:22:00 +0000 (03:22 +0100)]
Qt: Comment out left qDebug()

14 years agoQt: EPG, propagate the infos when clicking on an Item
Jean-Baptiste Kempf [Thu, 28 Jan 2010 02:20:28 +0000 (03:20 +0100)]
Qt: EPG, propagate the infos when clicking on an Item

14 years agoQt iconView: browse into node when it spawns subitems
Jakob Leben [Thu, 28 Jan 2010 02:12:03 +0000 (03:12 +0100)]
Qt iconView: browse into node when it spawns subitems

14 years agoQt: add public index-from-id function to PLModel
Jakob Leben [Thu, 28 Jan 2010 02:10:13 +0000 (03:10 +0100)]
Qt: add public index-from-id function to PLModel

14 years agortp sout: fix another race condition in RTSP
Pierre Ynard [Thu, 28 Jan 2010 00:59:43 +0000 (01:59 +0100)]
rtp sout: fix another race condition in RTSP

When RTSP is shut down, the server destroys sessions (with no locking)
while clients are still able to concurrently access them, potentially
leading to a crash. Make sure we unregister the RTSP URL before
cleaning up (then indeed no locking is needed).

14 years agoQt: connect the EPG to the core item on request
Jean-Baptiste Kempf [Thu, 28 Jan 2010 00:33:37 +0000 (01:33 +0100)]
Qt: connect the EPG to the core item on request

This is ugly, but I don't know how to do it the correct way.
The UI is not top-quality yet, but it works. Feel free to improve.

14 years agoMKV: support of PGS (BD subs) in .mkv
Jean-Baptiste Kempf [Wed, 27 Jan 2010 23:08:43 +0000 (00:08 +0100)]
MKV: support of PGS (BD subs) in .mkv

14 years agoQt: EPG, add a close button and other GUI improvements
Jean-Baptiste Kempf [Wed, 27 Jan 2010 15:28:06 +0000 (16:28 +0100)]
Qt: EPG, add a close button and other GUI improvements

14 years agoQt: We might want to share more that just a description
Jean-Baptiste Kempf [Wed, 27 Jan 2010 15:07:47 +0000 (16:07 +0100)]
Qt: We might want to share more that just a description

14 years agoQt: EPGItem doesn't need QObject inheritage
Jean-Baptiste Kempf [Wed, 27 Jan 2010 14:06:14 +0000 (15:06 +0100)]
Qt: EPGItem doesn't need QObject inheritage

14 years agoQt EPG: design and functionnalities improvements
Jean-Baptiste Kempf [Wed, 27 Jan 2010 01:25:24 +0000 (02:25 +0100)]
Qt EPG: design and functionnalities improvements

14 years agoQt: initial EPG dialogs and DP integration
Jean-Baptiste Kempf [Wed, 27 Jan 2010 00:27:19 +0000 (01:27 +0100)]
Qt: initial EPG dialogs and DP integration

14 years agoQt: EPG, include orders
Jean-Baptiste Kempf [Wed, 27 Jan 2010 00:17:39 +0000 (01:17 +0100)]
Qt: EPG, include orders

14 years agoQt: EPG in BuildSystem
Jean-Baptiste Kempf [Wed, 27 Jan 2010 00:04:29 +0000 (01:04 +0100)]
Qt: EPG in BuildSystem

14 years agoInitial commit for EPG class for EPG Viewing
Ludovic Fauvet [Tue, 26 Jan 2010 23:45:01 +0000 (00:45 +0100)]
Initial commit for EPG class for EPG Viewing

14 years agortp sout: fix race condition in RTSP
Pierre Ynard [Wed, 27 Jan 2010 23:55:00 +0000 (00:55 +0100)]
rtp sout: fix race condition in RTSP

When an ES is removed, it is possible to set up a track that won't be
cleaned up and will remain dangling, causing a crash later. Make sure
we unregister the RTSP URL before cleaning up.

14 years agoWin32: correct the 'one-instance' deallocation code
Erwan Tulou [Wed, 27 Jan 2010 22:08:38 +0000 (23:08 +0100)]
Win32: correct the 'one-instance' deallocation code

'one-instance' happens to work on Win32 though there are several issues:
- a WM_QUIT is sent to the helper thread when any instance terminates
 (the master or a secondary instance). 'one-instance' should then stop
 working as soon as the first secondary instance terminates.
- But, sending WM_QUIT via SendMessage directly calls the window
procedure callback. And this callback here doesn't process the message
at all. Therefore, it is a no-op and the thread is actually never stopped.

This patch does the following :
- move the WM_QUIT message to ensure that only the master (first) instance
 stops the helper thread.
- process the WM_QUIT message in the window procedure callback, and call
for clean termination of the thread.

Note that PostQuitMessage cannot be directly called as there are two
distincts threads here.

14 years agovlc_object_create: remove legacy support for negative sizes
Rémi Denis-Courmont [Wed, 27 Jan 2010 18:26:01 +0000 (20:26 +0200)]
vlc_object_create: remove legacy support for negative sizes

14 years agoaout: use vlc_custom_create
Rémi Denis-Courmont [Wed, 27 Jan 2010 18:33:31 +0000 (20:33 +0200)]
aout: use vlc_custom_create

14 years agodecoders: use vlc_custom_create, generic objects (except in input)
Rémi Denis-Courmont [Wed, 27 Jan 2010 18:16:58 +0000 (20:16 +0200)]
decoders: use vlc_custom_create, generic objects (except in input)

As far as I know, the distinction only matters anymore in the input
loop, for E/S out decoders (due to the evil ObjectKillChildren).

14 years agoLUA: vlc_object_find does not work for decoders and generic objects
Rémi Denis-Courmont [Wed, 27 Jan 2010 18:14:43 +0000 (20:14 +0200)]
LUA: vlc_object_find does not work for decoders and generic objects

14 years agoi18n: fix POTFILES
Pierre Ynard [Wed, 27 Jan 2010 18:51:03 +0000 (19:51 +0100)]
i18n: fix POTFILES

Remove moved files, they don't contain any translation

14 years agortp sout: fix socket leak
Pierre Ynard [Wed, 27 Jan 2010 17:44:33 +0000 (18:44 +0100)]
rtp sout: fix socket leak

RTCP sockets of RTSP sessions are not closed when the input is stopped.

14 years agoatmo: added update news
André Weber [Wed, 27 Jan 2010 17:14:16 +0000 (18:14 +0100)]
atmo: added update news

14 years agoatmo: enabled by default again, description changed
André Weber [Wed, 27 Jan 2010 17:03:45 +0000 (18:03 +0100)]
atmo: enabled by default again, description changed

14 years agoFix make install cache generation
Rémi Denis-Courmont [Wed, 27 Jan 2010 17:24:30 +0000 (19:24 +0200)]
Fix make install cache generation

libvlc*.so are not yet configured, so we can't use the installed
vlc-cache-gen just yet.

14 years agoDo not insert a module in the list twice
Rémi Denis-Courmont [Wed, 27 Jan 2010 17:22:46 +0000 (19:22 +0200)]
Do not insert a module in the list twice

If the same module (i.e. currently same file path) is scanned more than
once, the linked list would get corrupted, and VLC crash while loading.

This could happen, e.g. if you put $(vlclibdir) into --plugin-path.

14 years agoRemove write-only b_used property from cache entries
Rémi Denis-Courmont [Wed, 27 Jan 2010 17:14:39 +0000 (19:14 +0200)]
Remove write-only b_used property from cache entries

14 years agoRemove always false b_junk cache entry property
Rémi Denis-Courmont [Wed, 27 Jan 2010 17:12:17 +0000 (19:12 +0200)]
Remove always false b_junk cache entry property

14 years agoQt iconView: font adjustments
Jakob Leben [Wed, 27 Jan 2010 13:25:23 +0000 (14:25 +0100)]
Qt iconView: font adjustments

Keep application default font family.
Make Title italic.
Make both Title and Artist bold only if it is the current item.

14 years agoQt: unify item activation among PL views, change title when browsing in iconView
Jakob Leben [Wed, 27 Jan 2010 12:52:08 +0000 (13:52 +0100)]
Qt: unify item activation among PL views, change title when browsing in iconView

Also delay view creation in constructor after the title label has been created

14 years agoQt: connect currentChanged signal from model earlier
Jakob Leben [Wed, 27 Jan 2010 11:49:48 +0000 (12:49 +0100)]
Qt: connect currentChanged signal from model earlier

14 years agolibvlc_media_es_t: export ES id
Rafaël Carré [Wed, 27 Jan 2010 09:42:29 +0000 (10:42 +0100)]
libvlc_media_es_t: export ES id

14 years agomacosx_dialog_provider: Remove legacy -release.
Pierre d'Herbemont [Wed, 27 Jan 2010 08:53:51 +0000 (09:53 +0100)]
macosx_dialog_provider: Remove legacy -release.

14 years agomacosx/framework: Whitespace cleanup in VLCAudio.m
Pierre d'Herbemont [Wed, 27 Jan 2010 01:04:20 +0000 (02:04 +0100)]
macosx/framework: Whitespace cleanup in VLCAudio.m

14 years agomacosx/framework: Export VLCExtensionsManager and VLCExtension.
Pierre d'Herbemont [Wed, 27 Jan 2010 01:03:21 +0000 (02:03 +0100)]
macosx/framework: Export VLCExtensionsManager and VLCExtension.

This enables usage of vlc extension in Lunettes.

14 years agomacosx_dialog_provider: Add basic support for dialog-extension.
Pierre d'Herbemont [Wed, 27 Jan 2010 01:01:29 +0000 (02:01 +0100)]
macosx_dialog_provider: Add basic support for dialog-extension.

This needs to be splitted in a separate files.
VLCDialogGridView still suck, and won't place items as we would expect them.

14 years agolua/extension: Missing lock initialization.
Pierre d'Herbemont [Wed, 27 Jan 2010 01:00:48 +0000 (02:00 +0100)]
lua/extension: Missing lock initialization.

14 years agovlc_extensions.h: Don't use anonymous struct in typedef.
Pierre d'Herbemont [Wed, 27 Jan 2010 00:58:18 +0000 (01:58 +0100)]
vlc_extensions.h: Don't use anonymous struct in typedef.

14 years agomacosx/framework: Install libvlc and libvlccore as a link to their numbered version.
Pierre d'Herbemont [Tue, 26 Jan 2010 11:41:22 +0000 (12:41 +0100)]
macosx/framework: Install libvlc and libvlccore as a link to their numbered version.

14 years agomacosx/framework: Switch to C99.
Pierre d'Herbemont [Tue, 26 Jan 2010 11:40:38 +0000 (12:40 +0100)]
macosx/framework: Switch to C99.

14 years agoRemoved now unused VOUT_SET_SIZE.
Laurent Aimar [Tue, 26 Jan 2010 22:40:54 +0000 (23:40 +0100)]
Removed now unused VOUT_SET_SIZE.

14 years agoRedirected "zoom" on "scale" (vout_thread_t).
Laurent Aimar [Tue, 26 Jan 2010 22:34:02 +0000 (23:34 +0100)]
Redirected "zoom" on "scale" (vout_thread_t).

It fixes zoom settings at the core level (partially close #3245).
"zoom" cannot be removed as it provides a list of choices while "scale" is
a free value. The names aren't great, but that can wait.

14 years agoFixed zoom setting when the video fills the display.
Laurent Aimar [Tue, 26 Jan 2010 22:31:38 +0000 (23:31 +0100)]
Fixed zoom setting when the video fills the display.

The zoom parameters need to be taken into account as the window
can be resized.

14 years agoRemoved invalid var_DelCallback in teletext code (qt4).
Laurent Aimar [Tue, 26 Jan 2010 22:12:31 +0000 (23:12 +0100)]
Removed invalid var_DelCallback in teletext code (qt4).

14 years agolua: fix potential leak (and missing unlock).
Rémi Duraffort [Tue, 26 Jan 2010 21:38:37 +0000 (22:38 +0100)]
lua: fix potential leak (and missing unlock).

14 years agoatmo: fix mismatch allocation/deallocation.
Rémi Duraffort [Tue, 26 Jan 2010 21:27:37 +0000 (22:27 +0100)]
atmo: fix mismatch allocation/deallocation.

14 years agolibvlcpp: add some functions for Video.
Rémi Duraffort [Tue, 26 Jan 2010 20:43:25 +0000 (21:43 +0100)]
libvlcpp: add some functions for Video.

14 years agocil binding: typo.
Rémi Duraffort [Tue, 26 Jan 2010 17:18:53 +0000 (18:18 +0100)]
cil binding: typo.

14 years agoUpdate Doxyfile.in file.
Rémi Duraffort [Tue, 26 Jan 2010 12:55:45 +0000 (13:55 +0100)]
Update Doxyfile.in file.

14 years agofreetype: fix a forgotten dialog progress bar when an error arises
Erwan Tulou [Tue, 26 Jan 2010 21:34:06 +0000 (22:34 +0100)]
freetype: fix a forgotten dialog progress bar when an error arises

With wine, this module goes through the error procedure, but forgets to
deallocate the progress bar (stuck to 80%).
This patch simply cleans it up so that vlc can still be used satisfactorily.
(an error message is also issued anyway)

14 years agoQT4: leave assert there
Ilkka Ollakka [Tue, 26 Jan 2010 20:54:46 +0000 (22:54 +0200)]
QT4: leave assert there

14 years agoQT4: connect currentChanged from model on iconView case also
Ilkka Ollakka [Tue, 26 Jan 2010 20:50:55 +0000 (22:50 +0200)]
QT4: connect currentChanged from model on iconView case also

Should fix issue on not scrolling to current item when it changes in iconView

14 years agoNew release signing key. Take 2.
Christophe Mutricy [Tue, 26 Jan 2010 20:37:31 +0000 (20:37 +0000)]
New release signing key. Take 2.

pub   1024D/7144D485 2010-01-26 [expires: 2011-01-26]
      Key fingerprint = 5C3C 8244 E40E BB95 86FD  92B5 7772 A59D 7144 D485
uid                  VideoLAN Release Signing Key (2010)

14 years agoAdd comments about the kind of key we need
Christophe Mutricy [Tue, 26 Jan 2010 20:36:44 +0000 (20:36 +0000)]
Add comments about the kind of key we need

14 years agoFixed selected entry in input_thread_t::"program".
Laurent Aimar [Tue, 26 Jan 2010 19:39:34 +0000 (20:39 +0100)]
Fixed selected entry in input_thread_t::"program".

14 years agoCosmetics.
Laurent Aimar [Tue, 26 Jan 2010 18:52:24 +0000 (19:52 +0100)]
Cosmetics.

14 years agoFixed heavy memory leaks in bandlimited.c
Laurent Aimar [Tue, 26 Jan 2010 18:30:59 +0000 (19:30 +0100)]
Fixed heavy memory leaks in bandlimited.c

14 years agoAlso fix audio_sample_format_t::i_channels in aout_FormatPrepare.
Laurent Aimar [Tue, 26 Jan 2010 18:18:06 +0000 (19:18 +0100)]
Also fix audio_sample_format_t::i_channels in aout_FormatPrepare.

14 years agoUsed name in UTF-16 format for embed AVI subtitles (close #2357).
Laurent Aimar [Tue, 26 Jan 2010 18:13:02 +0000 (19:13 +0100)]
Used name in UTF-16 format for embed AVI subtitles (close #2357).

14 years agoAdded AtmoLight tab inside video effects dialog
André Weber [Tue, 26 Jan 2010 18:51:53 +0000 (19:51 +0100)]
Added AtmoLight tab inside video effects dialog
allows only to control some important options of the AtmoLight module, which control the color calculation.
Hardware setup has to be done inside the normal video filter setup.

14 years agoenhanced & corrected AtmoLight filter module
André Weber [Tue, 26 Jan 2010 18:37:37 +0000 (19:37 +0100)]
enhanced & corrected AtmoLight filter module
- added more thread locking/synchronization, to avoid potential risk of race conditions
- changed the option to choose the output device
- added support for MoMoLight (http://www.ambilight4pc.com/momolight/momolight.html)
- added support for a simple serial DMX (255 channel) controller
- added support for Quattro Atmo Light (allows to use four separated classic AtmoLights, as one virtual AtmoLight)
- changed the way color packets are passed from AtmoExternalCaptureInput to AtmoLiveView useing a queue object (instead of a unsynchronized global variable)
- renamed some options inside atmo.cpp to meet the requirements from the video effect dialog widget (later commit)
- changed the way to define the zones for image color extraction (because the number of zones isn't longer fixed to 4 or 5)
- removed the need to copy some .dll as bridge for the external AtmoWin into the VideoLAN folder, try to load the dll from the same folder like AtmoWinX.exe
- do not a complete fade out, if the filter processed a low number of frames and gets stopped (keeps VideoLAN quick responding, if switching through deinterlacing modes)
- added a debug option to see which pixels are used for color computation (just for fun)
- added more infos to README.txt inside the source folder

14 years agoQt: more details on the icon view.
Ludovic Fauvet [Tue, 26 Jan 2010 13:26:46 +0000 (14:26 +0100)]
Qt: more details on the icon view.

Add album name and break long lines.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
14 years agoUse ifdef's to guard against setlocale() in vlc-cache-gen
Pierre Ynard [Tue, 26 Jan 2010 13:35:49 +0000 (14:35 +0100)]
Use ifdef's to guard against setlocale() in vlc-cache-gen

14 years agolibvlcpp: add version-info to the library.
Rémi Duraffort [Tue, 26 Jan 2010 11:41:29 +0000 (12:41 +0100)]
libvlcpp: add version-info to the library.

14 years agolibvlcpp: directly access to the instance.
Rémi Duraffort [Tue, 26 Jan 2010 11:12:03 +0000 (12:12 +0100)]
libvlcpp: directly access to the instance.

14 years agoQt: allow multiple selection in iconView
Jean-Baptiste Kempf [Tue, 26 Jan 2010 11:39:36 +0000 (12:39 +0100)]
Qt: allow multiple selection in iconView

14 years agoQt: iconView, use uniformItemSizes()
Jean-Baptiste Kempf [Tue, 26 Jan 2010 11:18:00 +0000 (12:18 +0100)]
Qt: iconView, use uniformItemSizes()

From Qt's doc:
"This enables the view to do some optimizations for performance purposes."

14 years agolibvlcpp: add a .pc file.
Rémi Duraffort [Tue, 26 Jan 2010 11:04:31 +0000 (12:04 +0100)]
libvlcpp: add a .pc file.

14 years agoQt playlist: mistaken currentItem logic
Jakob Leben [Tue, 26 Jan 2010 06:29:39 +0000 (07:29 +0100)]
Qt playlist: mistaken currentItem logic

14 years agoQt: save settings for playlist-selector/art splitter
Jakob Leben [Tue, 26 Jan 2010 05:54:53 +0000 (06:54 +0100)]
Qt: save settings for playlist-selector/art splitter

...to enable permanent hiding of art display

14 years agoQt: end settings group earlier so other settings have effect
Jakob Leben [Tue, 26 Jan 2010 05:48:58 +0000 (06:48 +0100)]
Qt: end settings group earlier so other settings have effect

14 years agoQt PL Model: don't emit currentChanged twice
Jakob Leben [Tue, 26 Jan 2010 04:50:52 +0000 (05:50 +0100)]
Qt PL Model: don't emit currentChanged twice

14 years agoQt: currentView initialization
Jakob Leben [Tue, 26 Jan 2010 04:41:59 +0000 (05:41 +0100)]
Qt: currentView initialization

14 years agoQt: plViews, cleanups
Jean-Baptiste Kempf [Tue, 26 Jan 2010 00:33:11 +0000 (01:33 +0100)]
Qt: plViews, cleanups

14 years agoQt: track the currentView and simplify the code
Jean-Baptiste Kempf [Tue, 26 Jan 2010 00:23:38 +0000 (01:23 +0100)]
Qt: track the currentView and simplify the code

14 years agoQt: put CreateTreeView and createIconView in their own functions
Jean-Baptiste Kempf [Mon, 25 Jan 2010 23:50:28 +0000 (00:50 +0100)]
Qt: put CreateTreeView and createIconView in their own functions

14 years agomacosx/framework: Remove the newly removed exception parameter of libvlc_event_attach.
Sebastien Zwickert [Mon, 25 Jan 2010 21:57:17 +0000 (22:57 +0100)]
macosx/framework: Remove the newly removed exception parameter of libvlc_event_attach.

Signed-off-by: Pierre d'Herbemont <pdherbemont@free.fr>
14 years agomacosx/framework: Implement write KVC for VLCMediaList.
Pierre d'Herbemont [Mon, 25 Jan 2010 23:41:46 +0000 (00:41 +0100)]
macosx/framework: Implement write KVC for VLCMediaList.

14 years agoFixed compilation after FromCharset.
Laurent Aimar [Mon, 25 Jan 2010 22:15:06 +0000 (23:15 +0100)]
Fixed compilation after FromCharset.

14 years agoAdded FromCharset helper.
Laurent Aimar [Mon, 25 Jan 2010 22:05:53 +0000 (23:05 +0100)]
Added FromCharset helper.

 It allows to easily convert from any charset supported by
vlc_iconv to UTF-8 (but with a performance penalty).

14 years agoFix segfault when freetype-yuvp is set to 1 in vlcrc.
Alexis Ballier [Mon, 25 Jan 2010 21:42:31 +0000 (22:42 +0100)]
Fix segfault when freetype-yuvp is set to 1 in vlcrc.

Allocate a palette for the format/region and reuse it. subpicture_region_Delete should take care of freeing it, but please someone double checks this to be sure.

Reported by: Alexander Stein
References: https://bugs.gentoo.org/show_bug.cgi?id=300406

14 years agoSet Shortname for Dirac and spudec
Jean-Baptiste Kempf [Mon, 25 Jan 2010 21:38:14 +0000 (22:38 +0100)]
Set Shortname for Dirac and spudec

14 years agoRename the "Other codecs" category
Jean-Baptiste Kempf [Mon, 25 Jan 2010 21:33:44 +0000 (22:33 +0100)]
Rename the "Other codecs" category

 - Noone knew what it was
 - Only FFmpeg+DMO were there and not being SPU_ES decoders
 - Maybe SDEC meant _S_ubtitles...
 - FFmpeg and DMO are in Video codecs now.

If you don't like this solution, I suggest merging all codecs subcat

14 years agoFluidsynth: convert path to ANSI on Windows
Rémi Denis-Courmont [Mon, 25 Jan 2010 21:13:01 +0000 (23:13 +0200)]
Fluidsynth: convert path to ANSI on Windows

14 years agofluidsynth: use error dialogs if the sound font fails
Rémi Denis-Courmont [Mon, 25 Jan 2010 21:11:38 +0000 (23:11 +0200)]
fluidsynth: use error dialogs if the sound font fails

14 years agoWe know that you are discovery, don't tell it to us 3 times
Jean-Baptiste Kempf [Mon, 25 Jan 2010 21:03:07 +0000 (22:03 +0100)]
We know that you are discovery, don't tell it to us 3 times

14 years agoTry to generate the plugins cache from make
Rémi Denis-Courmont [Mon, 25 Jan 2010 20:26:07 +0000 (22:26 +0200)]
Try to generate the plugins cache from make

 * Generate the plugins cache for the build tree during make all
   (if not cross-compiling).
 * Generate the plugins cache for the installation during make install
   (if not staging with DESTDIR).

14 years agoAdd vlc-cache-gen to generate the plugins cache off-line
Rémi Denis-Courmont [Mon, 25 Jan 2010 19:07:15 +0000 (21:07 +0200)]
Add vlc-cache-gen to generate the plugins cache off-line

14 years agoplugins must match "lib*_plugin"LIBEXT, not just "*"LIBEXT
Rémi Denis-Courmont [Mon, 25 Jan 2010 20:25:18 +0000 (22:25 +0200)]
plugins must match "lib*_plugin"LIBEXT, not just "*"LIBEXT

14 years agoxcb: fix resizing failing to succeed sometimes
Erwan Tulou [Sun, 10 Jan 2010 20:56:04 +0000 (21:56 +0100)]
xcb: fix resizing failing to succeed sometimes

The vout window provider may issue a series of several resize events in a row.
(e.g a user switching back and forth between two layouts in skins2)
Some events may then be wrongly discarded by xcb based on a check that doesn't
represent the latest situation.
The new design actually can accept all resizing events, and only processes the last event of a series of events detected by xcb. No filtering is needed in xcb.

14 years agoskins2: correct forgotten position and set default values
Erwan Tulou [Mon, 25 Jan 2010 07:31:11 +0000 (08:31 +0100)]
skins2: correct forgotten position and set default values