]> git.sesse.net Git - vlc/log
vlc
15 years agoFix vlc dependency on libvlc
Rémi Denis-Courmont [Sun, 1 Mar 2009 11:36:27 +0000 (13:36 +0200)]
Fix vlc dependency on libvlc

15 years agoconfigure: rationalize Xlib tests + minor fixes
Rémi Denis-Courmont [Sun, 1 Mar 2009 11:31:44 +0000 (13:31 +0200)]
configure: rationalize Xlib tests + minor fixes

 * gather all tests (that I could find)
 * X_FLAGS -> X_CFLAGS
 * test for Xlib.h only once
 * cleanup defaults (especially XvMC was silly)
 * factorize CPPFLAGS

15 years agoRessource -> Resource
Rémi Denis-Courmont [Sun, 1 Mar 2009 10:44:07 +0000 (12:44 +0200)]
Ressource -> Resource

15 years agoSpell resource the English way
Rémi Denis-Courmont [Sun, 1 Mar 2009 08:40:11 +0000 (10:40 +0200)]
Spell resource the English way

15 years agoDon't believe Wikipedia: VLC supports perfectly well Wavepack files OUTSIDE of mkv.
Jean-Baptiste Kempf [Sat, 28 Feb 2009 22:17:32 +0000 (23:17 +0100)]
Don't believe Wikipedia: VLC supports perfectly well Wavepack files OUTSIDE of mkv.

15 years agoQt: Same for telexFrame.
Jean-Baptiste Kempf [Sat, 28 Feb 2009 19:55:47 +0000 (20:55 +0100)]
Qt: Same for telexFrame.

15 years agoQt: now that you don't control the controls size anymore, be careful to resize the...
Jean-Baptiste Kempf [Sat, 28 Feb 2009 19:45:11 +0000 (20:45 +0100)]
Qt: now that you don't control the controls size anymore, be careful to resize the controller when buttons show up.

Close #2487.

15 years agoPacketize MPV as well
Rémi Denis-Courmont [Sat, 28 Feb 2009 18:51:37 +0000 (20:51 +0200)]
Packetize MPV as well

15 years agoRTP: audio/MPA needs to be packetized
Rémi Denis-Courmont [Sat, 28 Feb 2009 18:48:05 +0000 (20:48 +0200)]
RTP: audio/MPA needs to be packetized

(see http://forum.videolan.org/viewtopic.php?f=2&t=56224&p=186350)

15 years agoUse our endianism macros
Rémi Denis-Courmont [Sat, 28 Feb 2009 18:47:32 +0000 (20:47 +0200)]
Use our endianism macros

15 years agoSAP: add new payload types
Rémi Denis-Courmont [Sat, 28 Feb 2009 18:14:32 +0000 (20:14 +0200)]
SAP: add new payload types

15 years agoRecognize supported media type for SDP from SAP, not only from files
Rémi Denis-Courmont [Sat, 28 Feb 2009 18:11:54 +0000 (20:11 +0200)]
Recognize supported media type for SDP from SAP, not only from files

15 years agostr_format_meta: take the input stats lock as needed
Rémi Denis-Courmont [Sat, 28 Feb 2009 17:37:07 +0000 (19:37 +0200)]
str_format_meta: take the input stats lock as needed

15 years agoPrivatize input stats internals
Rémi Denis-Courmont [Sat, 28 Feb 2009 17:38:25 +0000 (19:38 +0200)]
Privatize input stats internals

Those were never used from plugins. This commit is a no-brainer.

15 years agoRemove remaining global stats code
Rémi Denis-Courmont [Sat, 28 Feb 2009 17:19:45 +0000 (19:19 +0200)]
Remove remaining global stats code

15 years agoRemove uninitialized and unsynchronized global stats
Rémi Denis-Courmont [Sat, 28 Feb 2009 17:16:29 +0000 (19:16 +0200)]
Remove uninitialized and unsynchronized global stats

This could crash the input thread(s).

15 years agoRemove non-working and hardly documented RRD support
Rémi Denis-Courmont [Sat, 28 Feb 2009 17:15:59 +0000 (19:15 +0200)]
Remove non-working and hardly documented RRD support

15 years agoQt: update comment in menus.cpp
Jean-Baptiste Kempf [Sat, 28 Feb 2009 15:42:28 +0000 (16:42 +0100)]
Qt: update comment in menus.cpp

15 years agoUse !isVisible when needed ISO isHidden
Jean-Baptiste Kempf [Sat, 28 Feb 2009 15:19:50 +0000 (16:19 +0100)]
Use !isVisible when needed ISO isHidden

15 years agoUse a symbolic link instead of a shell script for static vlc
Rémi Denis-Courmont [Sat, 28 Feb 2009 14:14:44 +0000 (16:14 +0200)]
Use a symbolic link instead of a shell script for static vlc

This allows invoking debuggers directly from the command line again!

15 years agoHard code plugin path and http path in static VLC
Rémi Denis-Courmont [Sat, 28 Feb 2009 14:10:49 +0000 (16:10 +0200)]
Hard code plugin path and http path in static VLC

This allows using the http interface directly when builddir != srcdir.
This is needed to get rid of the ./vlc script.

15 years agoFix FfmpegExecute callback prototype
Rémi Denis-Courmont [Sat, 28 Feb 2009 11:36:19 +0000 (13:36 +0200)]
Fix FfmpegExecute callback prototype

15 years agoQt: consistency between loop and random buttons.
Jean-Baptiste Kempf [Sat, 28 Feb 2009 11:23:13 +0000 (12:23 +0100)]
Qt: consistency between loop and random buttons.

15 years agoQT4: set initial state of randombutton correctly
Ilkka Ollakka [Sat, 28 Feb 2009 10:56:22 +0000 (12:56 +0200)]
QT4: set initial state of randombutton correctly

15 years agoFix wrong initialization of 'mp2v' encoder profile
Roman Pen [Sat, 28 Feb 2009 00:39:17 +0000 (01:39 +0100)]
Fix wrong initialization of 'mp2v' encoder profile

According to ffmpeg/libavcodec/mpeg12enc.c:155 (rev:2fd06be07311)
profile and level must be inited at the same time, so, -1 will be
returned for mp2v with width > 720 or height > 576. But, if we leave
this fields blank (i.e. FF_PROFILE_UNKNOWN and FF_LEVEL_UNKNOWN) avcodec
will init them correctly.

This partially reverts commit b1b72b632aed8ccf9624093214efe1329093e6f8.

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
15 years agoMake UI compatible Qt4.3 - May people from the designer die in Hell...
Jean-Baptiste Kempf [Sat, 28 Feb 2009 10:46:51 +0000 (11:46 +0100)]
Make UI compatible Qt4.3 - May people from the designer die in Hell...

15 years agoQt: random button is now just a checkable button and doesn't change icon nor tooltip.
Jean-Baptiste Kempf [Sat, 28 Feb 2009 00:39:17 +0000 (01:39 +0100)]
Qt: random button is now just a checkable button and doesn't change icon nor tooltip.

This fixes the previous behaviour that was confusing.

15 years agoQt: string consistency.
Jean-Baptiste Kempf [Sat, 28 Feb 2009 00:06:53 +0000 (01:06 +0100)]
Qt: string consistency.

15 years agoQt: add UI for play-and-exit activation. Just a menu for now.
Jean-Baptiste Kempf [Fri, 27 Feb 2009 23:56:20 +0000 (00:56 +0100)]
Qt: add UI for play-and-exit activation. Just a menu for now.

Close partly #2237

15 years agoQt: cohenrency for volume between FSC and main Controller. Solve the 1% issue reporte...
Jean-Baptiste Kempf [Fri, 27 Feb 2009 22:51:52 +0000 (23:51 +0100)]
Qt: cohenrency for volume between FSC and main Controller. Solve the 1% issue reported by Trax, close #1851.

15 years agoQt: comments.
Jean-Baptiste Kempf [Fri, 27 Feb 2009 21:14:13 +0000 (22:14 +0100)]
Qt: comments.

15 years agoQt: add a shortcut for A->B loop
Jean-Baptiste Kempf [Fri, 27 Feb 2009 20:15:12 +0000 (21:15 +0100)]
Qt: add a shortcut for A->B loop

We need to fix that better in post 1.0.0
Close #2377

15 years agoQt: remove debug forgotten.
Jean-Baptiste Kempf [Fri, 27 Feb 2009 20:04:46 +0000 (21:04 +0100)]
Qt: remove debug forgotten.

15 years agoQt: block too large Windows for open dialog. And close #2475.
Jean-Baptiste Kempf [Fri, 27 Feb 2009 20:01:56 +0000 (21:01 +0100)]
Qt: block too large Windows for open dialog. And close #2475.

15 years agoQt: remove the static QAction* for the menus consistency in the Fullscreen Mode.
Jean-Baptiste Kempf [Fri, 27 Feb 2009 19:58:12 +0000 (20:58 +0100)]
Qt: remove the static QAction* for the menus consistency in the Fullscreen Mode.

15 years agoQt: remove the HACK with the static QAction for minimalViewAction, and fix a few...
Jean-Baptiste Kempf [Fri, 27 Feb 2009 19:28:55 +0000 (20:28 +0100)]
Qt: remove the HACK with the static QAction for minimalViewAction, and fix a few minimalVIew issues.

15 years agogestures: cleaning.
Rémi Duraffort [Fri, 27 Feb 2009 17:30:55 +0000 (18:30 +0100)]
gestures: cleaning.

15 years agohotkeys: factorization.
Rémi Duraffort [Fri, 27 Feb 2009 16:18:55 +0000 (17:18 +0100)]
hotkeys: factorization.

15 years agogestures:
Rémi Duraffort [Fri, 27 Feb 2009 16:09:56 +0000 (17:09 +0100)]
gestures:
 * add the possibility to go slower and faster (wasn't finished)
 * some cleaning and factorization

15 years agogestures: remove the (init|end)thread function
Rémi Duraffort [Fri, 27 Feb 2009 15:37:58 +0000 (16:37 +0100)]
gestures: remove the (init|end)thread function

15 years agogestures: use the right objet for the variable.
Rémi Duraffort [Thu, 26 Feb 2009 22:04:30 +0000 (23:04 +0100)]
gestures: use the right objet for the variable.

15 years agogesture: remove one dummy function and clean a bit.
Rémi Duraffort [Thu, 26 Feb 2009 17:22:51 +0000 (18:22 +0100)]
gesture: remove one dummy function and clean a bit.

15 years agoQt: remove debug.
Jean-Baptiste Kempf [Fri, 27 Feb 2009 10:30:10 +0000 (11:30 +0100)]
Qt: remove debug.

15 years agoQt: repair A->B loop and close #2558
Jean-Baptiste Kempf [Fri, 27 Feb 2009 00:33:32 +0000 (01:33 +0100)]
Qt: repair A->B loop and close #2558

15 years agos/Paste MRL/Paste Location/
Jean-Baptiste Kempf [Fri, 27 Feb 2009 00:07:39 +0000 (01:07 +0100)]
s/Paste MRL/Paste Location/

15 years agoskins2: simplification.
Rémi Duraffort [Thu, 26 Feb 2009 10:23:32 +0000 (11:23 +0100)]
skins2: simplification.

15 years agoChange wording to be more accurate.
jpd@m2x.nl [Thu, 26 Feb 2009 14:05:37 +0000 (15:05 +0100)]
Change wording to be more accurate.

Change wording to be more accurate.

And maybe make JB happy.

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
15 years agoNew hotkeys for normal speed(=), faster(]) and slower([)
Jean-Baptiste Kempf [Wed, 25 Feb 2009 23:55:59 +0000 (00:55 +0100)]
New hotkeys for normal speed(=), faster(]) and slower([)

15 years agoMore NEWS.
Jean-Baptiste Kempf [Wed, 25 Feb 2009 23:43:33 +0000 (00:43 +0100)]
More NEWS.

15 years agoAdded hotkeys for fine playback rate control.
Laurent Aimar [Wed, 25 Feb 2009 23:01:41 +0000 (00:01 +0100)]
Added hotkeys for fine playback rate control.

15 years agoUse calloc when appropriate (cdrom.c)
Laurent Aimar [Wed, 25 Feb 2009 20:58:18 +0000 (21:58 +0100)]
Use calloc when appropriate (cdrom.c)

15 years agoCosmetics (notify)
Laurent Aimar [Wed, 25 Feb 2009 20:12:51 +0000 (21:12 +0100)]
Cosmetics (notify)

15 years agoFixed potential segfault in notify.
Laurent Aimar [Wed, 25 Feb 2009 20:03:48 +0000 (21:03 +0100)]
Fixed potential segfault in notify.

15 years agoCosmetics (notify)
Laurent Aimar [Wed, 25 Feb 2009 20:03:09 +0000 (21:03 +0100)]
Cosmetics (notify)

15 years agoRemove useless/wrong static non const variable (notify).
Laurent Aimar [Wed, 25 Feb 2009 20:01:15 +0000 (21:01 +0100)]
Remove useless/wrong static non const variable (notify).

15 years agoCosmetics (notify)
Laurent Aimar [Wed, 25 Feb 2009 19:53:48 +0000 (20:53 +0100)]
Cosmetics (notify)

15 years agoupdate LIST.
Rémi Duraffort [Wed, 25 Feb 2009 13:23:25 +0000 (14:23 +0100)]
update LIST.

15 years agoxtag: comment out xtag_snprint wich is never used.
Rémi Duraffort [Wed, 25 Feb 2009 13:18:40 +0000 (14:18 +0100)]
xtag: comment out xtag_snprint wich is never used.

15 years agostats: consistence declaration.
Rémi Duraffort [Wed, 25 Feb 2009 13:14:13 +0000 (14:14 +0100)]
stats: consistence declaration.

15 years agoplyalist_export: less includes.
Rémi Duraffort [Wed, 25 Feb 2009 13:08:14 +0000 (14:08 +0100)]
plyalist_export: less includes.

15 years agoplaylist export: unify module description.
Rémi Duraffort [Wed, 25 Feb 2009 12:56:46 +0000 (13:56 +0100)]
playlist export: unify module description.

15 years agoosd: less includes.
Rémi Duraffort [Wed, 25 Feb 2009 12:53:23 +0000 (13:53 +0100)]
osd: less includes.

15 years agoosd: use calloc and a bit of cleaning.
Rémi Duraffort [Wed, 25 Feb 2009 12:46:16 +0000 (13:46 +0100)]
osd: use calloc and a bit of cleaning.

15 years agoosd: less includes.
Rémi Duraffort [Wed, 25 Feb 2009 12:40:13 +0000 (13:40 +0100)]
osd: less includes.

15 years agounused variable.
Rémi Duraffort [Wed, 25 Feb 2009 12:33:17 +0000 (13:33 +0100)]
unused variable.

15 years agotelepathy: compute test only one time
Rémi Duraffort [Wed, 25 Feb 2009 12:25:29 +0000 (13:25 +0100)]
telepathy: compute test only one time
(and strlen("item-current") == 12)

15 years agonotify: less includes.
Rémi Duraffort [Wed, 25 Feb 2009 12:22:32 +0000 (13:22 +0100)]
notify: less includes.

15 years agoConvenience target to run also the broken tests
Rémi Denis-Courmont [Wed, 25 Feb 2009 18:06:43 +0000 (20:06 +0200)]
Convenience target to run also the broken tests

15 years agomedia_list_player test now works
Rémi Denis-Courmont [Wed, 25 Feb 2009 18:06:31 +0000 (20:06 +0200)]
media_list_player test now works

15 years agoProvide a dummy (empty) but valid sample file
Rémi Denis-Courmont [Wed, 25 Feb 2009 18:06:05 +0000 (20:06 +0200)]
Provide a dummy (empty) but valid sample file

15 years agomedia_list test is safe to run
Rémi Denis-Courmont [Wed, 25 Feb 2009 17:38:21 +0000 (19:38 +0200)]
media_list test is safe to run

15 years agoDo not notifications actions if the server does not support it
Cody Russell [Wed, 25 Feb 2009 16:35:36 +0000 (18:35 +0200)]
Do not notifications actions if the server does not support it

Signed-off-by: Rémi Denis-Courmont <rdenis@simphalempin.com>
15 years agoAvoid infinite loop when the telnet session is closed client-side.
Adrien Grand [Wed, 25 Feb 2009 03:42:00 +0000 (04:42 +0100)]
Avoid infinite loop when the telnet session is closed client-side.

Signed-off-by: Rémi Denis-Courmont <rdenis@simphalempin.com>
15 years agoFix spelling of the word ``instantiating''.
JP Dinger [Wed, 25 Feb 2009 13:19:48 +0000 (14:19 +0100)]
Fix spelling of the word ``instantiating''.

Signed-off-by: Rémi Denis-Courmont <rdenis@simphalempin.com>
15 years agoUse IPPROTO_IP if SOL_IP is missing
Rémi Denis-Courmont [Wed, 25 Feb 2009 16:13:47 +0000 (18:13 +0200)]
Use IPPROTO_IP if SOL_IP is missing

15 years agoWin32: fix crash reporting version string
Geoffroy Couprie [Wed, 25 Feb 2009 13:10:43 +0000 (14:10 +0100)]
Win32: fix crash reporting version string

15 years agoAdded missing EnsureUTF8 for CD-TEXT.
Laurent Aimar [Tue, 24 Feb 2009 22:56:55 +0000 (23:56 +0100)]
Added missing EnsureUTF8 for CD-TEXT.

15 years agoSet dummy decoder output format.
Laurent Aimar [Tue, 24 Feb 2009 19:28:03 +0000 (20:28 +0100)]
Set dummy decoder output format.

15 years agoImproved a bit SRT support.
Laurent Aimar [Mon, 23 Feb 2009 20:08:35 +0000 (21:08 +0100)]
Improved a bit SRT support.

Added missings realloc/malloc checks.
Added support for not closed html tags (only if missing at the end).

15 years agoAdded CD-TEXT support to our cdda module (linux/win32).
Laurent Aimar [Tue, 24 Feb 2009 22:42:29 +0000 (23:42 +0100)]
Added CD-TEXT support to our cdda module (linux/win32).

15 years agoFixed a segfault in hotkeys.
Laurent Aimar [Tue, 24 Feb 2009 22:40:59 +0000 (23:40 +0100)]
Fixed a segfault in hotkeys.

15 years agoPrepare GetTracks for CD-TEXT (cdda).
Laurent Aimar [Tue, 24 Feb 2009 22:29:34 +0000 (23:29 +0100)]
Prepare GetTracks for CD-TEXT (cdda).

15 years agoClean up/Fix memleak in CDDB code for our cdda access.
Laurent Aimar [Tue, 24 Feb 2009 22:15:59 +0000 (23:15 +0100)]
Clean up/Fix memleak in CDDB code for our cdda access.

15 years agoAdded ioctl_GetCdText to our cdrom wrapper for linux and win32.
Laurent Aimar [Tue, 24 Feb 2009 22:02:34 +0000 (23:02 +0100)]
Added ioctl_GetCdText to our cdrom wrapper for linux and win32.

It is not yet used, but will allow CD-TEXT info support.

15 years agoCosmetics.
Laurent Aimar [Tue, 24 Feb 2009 21:51:50 +0000 (22:51 +0100)]
Cosmetics.

15 years agoFixed a small memleak in cdda/vcd code.
Laurent Aimar [Tue, 24 Feb 2009 21:51:22 +0000 (22:51 +0100)]
Fixed a small memleak in cdda/vcd code.

15 years agoWinCE: make buildbot happy for now.
Geoffroy Couprie [Tue, 24 Feb 2009 21:33:07 +0000 (22:33 +0100)]
WinCE: make buildbot happy for now.

15 years agoWinCE: add more libs to contribs
Geoffroy Couprie [Tue, 24 Feb 2009 20:45:26 +0000 (21:45 +0100)]
WinCE: add more libs to contribs

15 years agoWin32: send crash reports to ftp://crash.videolan.org/crashs/
Geoffroy Couprie [Tue, 24 Feb 2009 20:37:29 +0000 (21:37 +0100)]
Win32: send crash reports to ftp://crash.videolan.org/crashs/

15 years agoUse a framebuffer whose visual matches that of the window - refs #1672
Rémi Denis-Courmont [Tue, 24 Feb 2009 17:50:13 +0000 (19:50 +0200)]
Use a framebuffer whose visual matches that of the window - refs #1672

This might fix the X_GLXCreateWindow BadMatch error. I cannot reproduce
it, so I cannot confirm this.

15 years agoGet configurations for the screen we do use.
Rémi Denis-Courmont [Tue, 24 Feb 2009 17:39:40 +0000 (19:39 +0200)]
Get configurations for the screen we do use.

15 years agoRequire a visual since we need one at the next API call
Rémi Denis-Courmont [Tue, 24 Feb 2009 17:23:37 +0000 (19:23 +0200)]
Require a visual since we need one at the next API call

15 years agoDon't handle impossible error
Rémi Denis-Courmont [Tue, 24 Feb 2009 17:06:37 +0000 (19:06 +0200)]
Don't handle impossible error

glXChooseFBConfig always return NULL if there are no adequate configs.

15 years agostatic const
Rémi Denis-Courmont [Tue, 24 Feb 2009 17:00:47 +0000 (19:00 +0200)]
static const

15 years agoQt: use the new lock icon.
Jean-Baptiste Kempf [Tue, 24 Feb 2009 10:18:43 +0000 (11:18 +0100)]
Qt: use the new lock icon.

15 years agoMerge branch 'master' of git@git.videolan.org:vlc
Jean-Baptiste Kempf [Tue, 24 Feb 2009 10:15:50 +0000 (11:15 +0100)]
Merge branch 'master' of git@git.videolan.org:vlc

15 years agoQt: add a new 'lock' icon.
Jean-Baptiste Kempf [Tue, 24 Feb 2009 10:15:14 +0000 (11:15 +0100)]
Qt: add a new 'lock' icon.

15 years agoQt: Reset the Open List on acceptance
Jean-Baptiste Kempf [Tue, 24 Feb 2009 10:14:44 +0000 (11:14 +0100)]
Qt: Reset the Open List on acceptance

15 years agoFix inexistant argument
Pierre Ynard [Mon, 23 Feb 2009 11:06:11 +0000 (12:06 +0100)]
Fix inexistant argument

Signed-off-by: Rémi Duraffort <ivoire@videolan.org>
15 years agonotify: use asprintf
Rémi Duraffort [Tue, 24 Feb 2009 07:24:36 +0000 (08:24 +0100)]
notify: use asprintf