]> git.sesse.net Git - vlc/log
vlc
12 years agoFix assertions
Tobias Güntner [Mon, 19 Dec 2011 14:36:04 +0000 (15:36 +0100)]
Fix assertions

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
12 years agoupnp: Use the default maximum content length of 16k.
Mirsal Ennaime [Mon, 19 Dec 2011 03:16:50 +0000 (04:16 +0100)]
upnp: Use the default maximum content length of 16k.

Setting libupnp's maximum content length to zero makes it unable to
fetch any didl instead of the probably expected unlimited behavior.

12 years agoupnp: Support UPnP A/V MediaServer:2 devices
Chris Clayton [Sat, 17 Dec 2011 23:30:08 +0000 (23:30 +0000)]
upnp: Support UPnP A/V MediaServer:2 devices

* Accept any version of the MediaServer service
* Browse the advertised ContentDirectory service version

Signed-off-by: Mirsal Ennaime <mirsal@videolan.org>
12 years agoconfigure: sort of fix speexdsp
Pierre Ynard [Mon, 19 Dec 2011 02:30:20 +0000 (03:30 +0100)]
configure: sort of fix speexdsp

$enable_speex can't be empty at this point so this check makes no sense

12 years agoUPNP: Fix a tag name in MediaServer xml parsing
Chris Clayton [Sat, 17 Dec 2011 23:00:47 +0000 (23:00 +0000)]
UPNP: Fix a tag name in MediaServer xml parsing

According to http://upnp.org/specs/av/UPnP-av-MediaServer-v1-Device.pdf, the tag name of the element
that provides the base URL for relative URLs is "URLBase". The same is true for a v2 MediaServer.
Make it so in MediaServer:: parseDeviceDescription().

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoFix stack overflow in ExecuteCommand
Cheng Sun [Thu, 15 Dec 2011 17:10:52 +0000 (17:10 +0000)]
Fix stack overflow in ExecuteCommand

Close #5675

Because ExecuteCommand allocates temporary string space on the stack,
proportional to the length of the command to execute, a stack overflow can
occur when the the command is too long.

This can be triggered remotely e.g. from the VLC Web interface, by
running this JavaScript:

sendVLMCmd(Array.prototype.join.call({length:300000},'a'));

which sends a string of length 300000 to ExecuteCommand, crashing VLC.

OKed-by: Rafaël Carré <funman@videolan.org>
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoomxil: Use a fake library name when loading IOMX
Martin Storsjö [Fri, 16 Dec 2011 21:47:06 +0000 (23:47 +0200)]
omxil: Use a fake library name when loading IOMX

The iomx loading stub doesn't use the library name.
If there's errors in loading the function pointers, this
gives slightly more correct error messages.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoandroid: Don't add private header include directories when building the full VLC...
Martin Storsjö [Fri, 16 Dec 2011 21:47:05 +0000 (23:47 +0200)]
android: Don't add private header include directories when building the full VLC tree

These aren't necessary any longer.

The approach of adding private headers to the build of the VLC
core doesn't work well if one wants to target multiple private
ABI versions in one build.

Instead, small shared libraries for each private ABI version
can be built separately.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoomxil: Remove the header check for the iomx module
Martin Storsjö [Fri, 16 Dec 2011 21:47:04 +0000 (23:47 +0200)]
omxil: Remove the header check for the iomx module

Building the iomx version of the omxil module itself doesn't
require the private headers any longer, they're only necessary
when building the iomx wrapper code (which should be built by the
NDK makefile instead).

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoomxil: Build the iomx wrapper code as a separate shared library
Martin Storsjö [Fri, 16 Dec 2011 21:47:03 +0000 (23:47 +0200)]
omxil: Build the iomx wrapper code as a separate shared library

The separate shared library needs to be loaded into the process
before using the iomx module, preferrably by the java part
of the android application.

This allows building the iomx glue code for a number of different
ABI versions, and additionally avoids linking the main VLC
library to any private symbols that might make it unloadable.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoomxil: Make the iomx wrapper not depend on the omxil utils.c file
Martin Storsjö [Fri, 16 Dec 2011 21:47:02 +0000 (23:47 +0200)]
omxil: Make the iomx wrapper not depend on the omxil utils.c file

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agowindows package: name win64 installer vlc-$version-win64.exe
Rafaël Carré [Sun, 18 Dec 2011 21:53:11 +0000 (16:53 -0500)]
windows package: name win64 installer vlc-$version-win64.exe

12 years agoRevert "Contribs: update live555 to latest snapshot"
Rémi Denis-Courmont [Sun, 18 Dec 2011 19:19:46 +0000 (21:19 +0200)]
Revert "Contribs: update live555 to latest snapshot"

This reverts commit acb6ff18b5f4257771b954b81eed569d7ef9e250.

12 years agoRevert "Configure: Update live555 requirements"
Rémi Denis-Courmont [Sun, 18 Dec 2011 19:19:38 +0000 (21:19 +0200)]
Revert "Configure: Update live555 requirements"

This reverts commit 4e03fb4f516010c9b2819db6da361b4fdb0b16d2.

12 years agortsp: fix up duplicate --rtsp-host option declaration
Pierre Ynard [Sun, 18 Dec 2011 18:18:07 +0000 (19:18 +0100)]
rtsp: fix up duplicate --rtsp-host option declaration

12 years agortp output: print warnings when setting the RTSP server address
Pierre Ynard [Sun, 18 Dec 2011 18:17:05 +0000 (19:17 +0100)]
rtp output: print warnings when setting the RTSP server address

12 years agortsp: remove now useless handling of full --rtsp-host syntax
Pierre Ynard [Sun, 18 Dec 2011 18:11:32 +0000 (19:11 +0100)]
rtsp: remove now useless handling of full --rtsp-host syntax

12 years agortsp: set default port back to 554
Pierre Ynard [Sun, 18 Dec 2011 18:09:40 +0000 (19:09 +0100)]
rtsp: set default port back to 554

12 years agoluahttp: print error when setting the host from the lua configuration
Pierre Ynard [Sun, 18 Dec 2011 18:08:08 +0000 (19:08 +0100)]
luahttp: print error when setting the host from the lua configuration

12 years agohttp output: print warnings when setting the server address
Pierre Ynard [Sun, 18 Dec 2011 18:04:27 +0000 (19:04 +0100)]
http output: print warnings when setting the server address

12 years agohttpd: URL-parse --http-host and --rtsp-host
Pierre Ynard [Sun, 18 Dec 2011 17:58:23 +0000 (18:58 +0100)]
httpd: URL-parse --http-host and --rtsp-host

This deals gracefully with and warns about the legacy
--http-host <host>:<port> and --rtsp-host <host>:<port>/<path> syntaxes

12 years agohttpd: remove dead assignment
Pierre Ynard [Sun, 18 Dec 2011 17:54:35 +0000 (18:54 +0100)]
httpd: remove dead assignment

12 years ago"Leave" => "Exit"
Jean-Baptiste Kempf [Sun, 18 Dec 2011 15:48:42 +0000 (16:48 +0100)]
"Leave" => "Exit"

Close #5694

12 years agoQt: fix copyright years
Jean-Baptiste Kempf [Sun, 18 Dec 2011 13:57:22 +0000 (14:57 +0100)]
Qt: fix copyright years

12 years agoFix QToolButtonExt edge cases
Cheng Sun [Sat, 17 Dec 2011 21:22:11 +0000 (21:22 +0000)]
Fix QToolButtonExt edge cases

Previously QToolButtonExt had some undesirable edge case behaviour.

Firstly, once the user presses down on a QToolButtonExt there is no
way to cancel the action; either a short or a long click will be
generated. Compare this to a normal button, which can be cancelled by
releasing the mouse outside of the button area.

Secondly, with the mouse button held down, moving the mouse in and out
of the button area will generate multiple short click events, when no
event at all is desired.

This patch corrects this: by releasing the mouse outside the button area
no event is generated; additionally no short click events are generated
simply by moving the depressed mouse in and out of the button.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoMP4: cleanup
Jean-Baptiste Kempf [Sun, 18 Dec 2011 01:32:59 +0000 (02:32 +0100)]
MP4: cleanup

improve locality, remove memset and useless labels, add unlikely post
allocations

12 years agoMp4: fix stsz parsing
Jean-Baptiste Kempf [Sun, 18 Dec 2011 00:57:54 +0000 (01:57 +0100)]
Mp4: fix stsz parsing

Do not malloc 900Mb, for example...

Close #5689

12 years agodvb_set_isdbc(): remove unused arguments warnings
Rafaël Carré [Sat, 17 Dec 2011 20:35:40 +0000 (15:35 -0500)]
dvb_set_isdbc(): remove unused arguments warnings

12 years agowin64 package: use -win64 version string
Rafaël Carré [Sat, 17 Dec 2011 20:35:03 +0000 (15:35 -0500)]
win64 package: use -win64 version string

12 years agoMacOS: do not thip the changelogs, it is useless
Jean-Baptiste Kempf [Sat, 17 Dec 2011 18:18:49 +0000 (19:18 +0100)]
MacOS: do not thip the changelogs, it is useless

12 years agoImprove WebUI for mobiles
Konstantin Bogdanov [Sat, 17 Dec 2011 17:43:41 +0000 (18:43 +0100)]
Improve WebUI for mobiles

Tested on iOS devices

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoFix EQ HTTP UI partially
Akash Mehrotra [Sun, 11 Dec 2011 19:18:11 +0000 (00:48 +0530)]
Fix EQ HTTP UI partially

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoSet title length and size.
Tobias Güntner [Sat, 17 Dec 2011 04:11:30 +0000 (05:11 +0100)]
Set title length and size.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoQt: do not react to right-click to mute volume
Jean-Baptiste Kempf [Sat, 17 Dec 2011 04:24:03 +0000 (05:24 +0100)]
Qt: do not react to right-click to mute volume

This is counter-intuitive.
As asked by etix

12 years agoFix typo in French translation
TUDURI Benoît [Sun, 11 Dec 2011 15:11:50 +0000 (16:11 +0100)]
Fix typo in French translation

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoIgnore missing meta data files. Check directory name instead.
Tobias Güntner [Thu, 15 Dec 2011 22:01:46 +0000 (23:01 +0100)]
Ignore missing meta data files. Check directory name instead.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoConfigure: Update live555 requirements
Jean-Baptiste Kempf [Thu, 15 Dec 2011 23:28:35 +0000 (00:28 +0100)]
Configure: Update live555 requirements

12 years agoContribs: update live555 to latest snapshot
Jean-Baptiste Kempf [Thu, 15 Dec 2011 23:22:14 +0000 (00:22 +0100)]
Contribs: update live555 to latest snapshot

12 years agoFix french mistranslation
Jean-Baptiste Kempf [Sat, 17 Dec 2011 03:04:07 +0000 (04:04 +0100)]
Fix french mistranslation

Close #5680

12 years agoQt: check colorDialog return function
Jean-Baptiste Kempf [Sat, 17 Dec 2011 02:59:00 +0000 (03:59 +0100)]
Qt: check colorDialog return function

Close #5679

12 years agocontrib: fix typo
Rémi Denis-Courmont [Fri, 16 Dec 2011 18:58:19 +0000 (20:58 +0200)]
contrib: fix typo

12 years agocontrib: don't ignore triplets in subfolders
Faustino E. Osuna [Thu, 15 Dec 2011 09:09:29 +0000 (10:09 +0100)]
contrib: don't ignore triplets in subfolders

Only ignores triplets in the root contrib path. Previous
implementation had the potential to ignore triplets in the
subfolders.

This will allow for creating:
1) Patches using this format (e.g. contrib/src/*/track-me-now.patch).
2) Subfolders beneath contrib's root (but not in contrib itself)
(e.g. contrib/src/track-me-now/*).

OK-ed-by: Rafaël Carré <funman@videolan.org>
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoDo not let avformat handle subtitles by default.
Laurent Aimar [Thu, 15 Dec 2011 21:16:46 +0000 (22:16 +0100)]
Do not let avformat handle subtitles by default.

12 years agoReworked the way avformat input are blacklisted.
Laurent Aimar [Thu, 15 Dec 2011 21:14:16 +0000 (22:14 +0100)]
Reworked the way avformat input are blacklisted.

12 years agoQt, sout: fix compilation on older moc version
Jean-Baptiste Kempf [Thu, 15 Dec 2011 20:44:17 +0000 (21:44 +0100)]
Qt, sout: fix compilation on older moc version

12 years agoDirectSound: avoid crash on faulty audio device.
Jean-Baptiste Kempf [Thu, 15 Dec 2011 15:11:25 +0000 (16:11 +0100)]
DirectSound: avoid crash on faulty audio device.

12 years agofix filename self-references
Pere Orga [Tue, 13 Dec 2011 23:29:36 +0000 (00:29 +0100)]
fix filename self-references

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
12 years agoImplement vlc_rand_bytes() for OS/2 and split to different files
KO Myung-Hun [Thu, 15 Dec 2011 08:13:10 +0000 (17:13 +0900)]
Implement vlc_rand_bytes() for OS/2 and split to different files

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
12 years agoFix compilation error due to pthread on OS/2
KO Myung-Hun [Thu, 8 Dec 2011 11:48:20 +0000 (20:48 +0900)]
Fix compilation error due to pthread on OS/2

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
12 years agomacosx: slightly enlarge the License button in the about window (fixes #5658)
Felix Paul Kühne [Thu, 15 Dec 2011 13:51:44 +0000 (14:51 +0100)]
macosx: slightly enlarge the License button in the about window (fixes #5658)

12 years agoQt: fix multi-screens weirdness caused by the dockable FSC
Ludovic Fauvet [Thu, 15 Dec 2011 12:51:37 +0000 (13:51 +0100)]
Qt: fix multi-screens weirdness caused by the dockable FSC

Close #5668

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoSupport duration in avformat demuxer
Edward Wang [Thu, 15 Dec 2011 01:13:14 +0000 (02:13 +0100)]
Support duration in avformat demuxer

Ref #4030

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoQt: fix an utf8 encoding issue in the recents menu
Ludovic Fauvet [Thu, 15 Dec 2011 00:21:13 +0000 (01:21 +0100)]
Qt: fix an utf8 encoding issue in the recents menu

The MRL received from a drag & drop was not converted correctly to an
URI (using toURI) before being saved into the configuration. This was
causing multi bytes characters to be serialized in UTF8 (\x????) and be
given as-is to decode_URI which is not able to decode them.
Close #5662

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoQt: enable the recents menu again after adding an element
Ludovic Fauvet [Thu, 15 Dec 2011 00:21:12 +0000 (01:21 +0100)]
Qt: enable the recents menu again after adding an element

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoQt: do not quit, let the core do it
Jean-Baptiste Kempf [Thu, 15 Dec 2011 00:19:00 +0000 (01:19 +0100)]
Qt: do not quit, let the core do it

Should fix crash on quit wrt to Vout
Tested on XP, 7 and Linux.

12 years agocontrib: update ignore files for git repositories
Faustino E. Osuna [Wed, 14 Dec 2011 19:24:22 +0000 (20:24 +0100)]
contrib: update ignore files for git repositories

Ignore downloaded git repos.

Signed-off-by: Rafaël Carré <funman@videolan.org>
12 years agocontrib: ignore triplets
Faustino E. Osuna [Wed, 14 Dec 2011 19:24:21 +0000 (20:24 +0100)]
contrib: ignore triplets

Ignore the triplet subfolders created in the contrib path.

Signed-off-by: Rafaël Carré <funman@videolan.org>
12 years agoextras/tools: update ignore files
Faustino E. Osuna [Wed, 14 Dec 2011 18:21:06 +0000 (19:21 +0100)]
extras/tools: update ignore files

Ignore downloaded archives / subfolders and files generated by make.

Signed-off-by: Rafaël Carré <funman@videolan.org>
12 years agoextras/tools: fix when downloading in tools.mak
Faustino E. Osuna [Wed, 14 Dec 2011 18:21:05 +0000 (19:21 +0100)]
extras/tools: fix when downloading in tools.mak

Fix a typo when using the $(download) function. This suppresses
malformed url errors from curl.

Signed-off-by: Rafaël Carré <funman@videolan.org>
12 years agocontrib: use 32-bits LUAC file format on all platforms
Rémi Denis-Courmont [Wed, 14 Dec 2011 18:00:47 +0000 (20:00 +0200)]
contrib: use 32-bits LUAC file format on all platforms

In other words, 64-bits platform will support 32-bits LUAC files and
reject 64-bits LUAC files when using contribs.
This should ease cross-compilation and copying luac files manually.

12 years agoQt4: slightly improve the color set of the slider
Ludovic Fauvet [Wed, 14 Dec 2011 17:32:07 +0000 (18:32 +0100)]
Qt4: slightly improve the color set of the slider

Thanks a lot to François Cartegnie, for the help to resolve the issue

Close #5604

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoQt: fix toolbar settings read
Jean-Baptiste Kempf [Wed, 14 Dec 2011 15:03:03 +0000 (16:03 +0100)]
Qt: fix toolbar settings read

Close #5673

12 years agoMKV: Do not list chapters and titles when there is only one of them
Denis Charmet [Wed, 14 Dec 2011 14:31:27 +0000 (15:31 +0100)]
MKV: Do not list chapters and titles when there is only one of them

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoAdd title time in playback menus for MP4
Edward Wang [Wed, 14 Dec 2011 13:14:12 +0000 (14:14 +0100)]
Add title time in playback menus for MP4

Ref #4030

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agofix typo in french translation of nvlc
Rafaël Carré [Wed, 14 Dec 2011 04:50:18 +0000 (23:50 -0500)]
fix typo in french translation of nvlc

12 years agoContribs: support for PPC in contribs
Jean-Baptiste Kempf [Wed, 14 Dec 2011 01:03:03 +0000 (02:03 +0100)]
Contribs: support for PPC in contribs

CrossCompiling from intel64 to PPC should mostly work on X.6 now

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoDxVA: More GUIDs
Jean-Baptiste Kempf [Wed, 14 Dec 2011 00:29:51 +0000 (01:29 +0100)]
DxVA: More GUIDs

12 years agoRevert "Qt: do not explode when using OpenGL vout"
Jean-Baptiste Kempf [Tue, 13 Dec 2011 21:52:46 +0000 (22:52 +0100)]
Revert "Qt: do not explode when using OpenGL vout"

This reverts commit f4c037efd2d3cde44daa1a58c7042fecc32b2177.

This does not work as intended...

12 years agoFaad: Reinitialize decoder when we got Unexpected channel configuration change.
Naohiro KORIYAMA [Tue, 13 Dec 2011 14:44:43 +0000 (23:44 +0900)]
Faad: Reinitialize decoder when we got Unexpected channel configuration change.

Very classic in ISDB streams

Closes #3714 #5448

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoAdd thd to the list of extensions
Jean-Baptiste Kempf [Tue, 13 Dec 2011 10:51:34 +0000 (11:51 +0100)]
Add thd to the list of extensions

Close #5664

12 years agoQt: use QWizard for Sout
Edward Wang [Tue, 13 Dec 2011 02:53:31 +0000 (03:53 +0100)]
Qt: use QWizard for Sout

Close #5651

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoQt: allow easy deletion of the keys and global key
Jean-Baptiste Kempf [Tue, 13 Dec 2011 02:29:30 +0000 (03:29 +0100)]
Qt: allow easy deletion of the keys and global key

This was a regression of the new design

12 years agoQt: fix global hotkeys retrieval from conf
Jean-Baptiste Kempf [Tue, 13 Dec 2011 02:11:56 +0000 (03:11 +0100)]
Qt: fix global hotkeys retrieval from conf

If the global key arrived before the normal key, it didn't got
displayed.
Bug mentioned on IRC.

12 years agoRevert "Disable direct-rendering on ProRes"
Rafaël Carré [Mon, 12 Dec 2011 20:17:06 +0000 (15:17 -0500)]
Revert "Disable direct-rendering on ProRes"

This reverts commit 8b914fcd30153d05b04921868166e5bd43370d61.

The problem was fixed in bc3b85c6bd6dc0094562561b084dcea3f0364743.

12 years agoEnsure that picture_Setup() use at least a mod 32 height for pictures.
Laurent Aimar [Mon, 12 Dec 2011 19:24:32 +0000 (20:24 +0100)]
Ensure that picture_Setup() use at least a mod 32 height for pictures.

12 years agortp output: do not inherit SRTP settings when SRTP is not built-in
Rémi Denis-Courmont [Mon, 12 Dec 2011 15:37:16 +0000 (17:37 +0200)]
rtp output: do not inherit SRTP settings when SRTP is not built-in

12 years agoPlaylist status not being updated on play/pause
Mal Graty [Mon, 12 Dec 2011 00:13:44 +0000 (00:13 +0000)]
Playlist status not being updated on play/pause

Fix issue #4899

The problem was that the playing/paused state was being misreported
to the luahttp interface, turns out this was due to the way the playing
state was being updated in the Qt and hotkey logic.

The p_input state was being updated, but the playlist wasn't being
informed, this patch switches out the p_state calls to use the
equivalent playlist aware functions.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoSet RealVideo to 0 priority
Jean-Baptiste Kempf [Mon, 12 Dec 2011 00:31:44 +0000 (01:31 +0100)]
Set RealVideo to 0 priority

12 years agoQt: do not explode when using OpenGL vout
Jean-Baptiste Kempf [Sun, 11 Dec 2011 23:22:04 +0000 (00:22 +0100)]
Qt: do not explode when using OpenGL vout

12 years agol10n: Add Breton translation to .desktop
Denis ARNAUD [Sun, 11 Dec 2011 18:04:55 +0000 (18:04 +0000)]
l10n: Add Breton translation to .desktop

Signed-off-by: Christophe Mutricy <xtophe@chewa.net>
12 years agoRemoved now useless(invalid) muli-volume rar concatenation in the input core.
Laurent Aimar [Sun, 11 Dec 2011 19:18:30 +0000 (20:18 +0100)]
Removed now useless(invalid) muli-volume rar concatenation in the input core.

12 years agoFixed multi-volume RAR support.
Laurent Aimar [Sun, 11 Dec 2011 19:13:18 +0000 (20:13 +0100)]
Fixed multi-volume RAR support.

The access now open itself the following rar volumes (only if needed). This
also allows to support rar embeded in rar or using other protocals than file.

It has been broken since the rar modules have been modified to
support multiple files.

12 years agoFixed a small leak when the rar stream_filter recognize the stream.
Laurent Aimar [Sun, 11 Dec 2011 19:11:55 +0000 (20:11 +0100)]
Fixed a small leak when the rar stream_filter recognize the stream.

12 years agoFixed potential out of bound reads in DASH probe function.
Laurent Aimar [Sun, 11 Dec 2011 19:03:10 +0000 (20:03 +0100)]
Fixed potential out of bound reads in DASH probe function.

12 years agoFixed the return value of STREAM_GET_CONTENT_TYPE in the rar stream_filter.
Laurent Aimar [Sun, 11 Dec 2011 10:42:43 +0000 (11:42 +0100)]
Fixed the return value of STREAM_GET_CONTENT_TYPE in the rar stream_filter.

12 years agoFinish the LGPL switch for libVLC and libVLCcore
Jean-Baptiste Kempf [Sun, 11 Dec 2011 18:08:16 +0000 (19:08 +0100)]
Finish the LGPL switch for libVLC and libVLCcore

12 years agoFix potential Freetype crash
Jean-Baptiste Kempf [Sun, 11 Dec 2011 17:06:21 +0000 (18:06 +0100)]
Fix potential Freetype crash

Close #5648

12 years agoSupport VP8 in NSV
Jean-Baptiste Kempf [Sun, 11 Dec 2011 16:02:35 +0000 (17:02 +0100)]
Support VP8 in NSV

12 years agoAdd title play time in playback menus for MKV
Edward Wang [Sun, 11 Dec 2011 11:07:06 +0000 (12:07 +0100)]
Add title play time in playback menus for MKV

Ref #4030

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoRevert "avcodec_get_edge_width() was added in libavcodec 52.66.0"
Rafaël Carré [Sun, 11 Dec 2011 03:30:46 +0000 (22:30 -0500)]
Revert "avcodec_get_edge_width() was added in libavcodec 52.66.0"

This reverts commit 3c6bb18e81a62e8abb58ecd8b2df8549dea39729.

Revert "avcodec: fix direct rendering with some codecs"

This reverts commit fcc84608b67f3c3567b96604577bfdcc0de45b53.

The issue is not related to EMU_EDGE flag

12 years agoosx: package Growl.framework
Rafaël Carré [Sun, 11 Dec 2011 03:18:48 +0000 (22:18 -0500)]
osx: package Growl.framework

xcodebuild doesn't know about the growl plugin so can't do it for us

12 years agoextras/tools: ignore fetched tarballs
Rafaël Carré [Sat, 10 Dec 2011 22:13:16 +0000 (17:13 -0500)]
extras/tools: ignore fetched tarballs

12 years agoavcodec_get_edge_width() was added in libavcodec 52.66.0
Rafaël Carré [Sat, 10 Dec 2011 22:10:22 +0000 (17:10 -0500)]
avcodec_get_edge_width() was added in libavcodec 52.66.0

as documented by doc/APIchanges

12 years agoavcodec: fix direct rendering with some codecs
Rafaël Carré [Sat, 10 Dec 2011 21:58:35 +0000 (16:58 -0500)]
avcodec: fix direct rendering with some codecs

Provide edge buffers when CODEC_FLAG_EMU_EDGE is set
Fix ProRes playback with direct rendering

12 years agoContribs: compile more tools from gettext
Jean-Baptiste Kempf [Sat, 10 Dec 2011 20:15:21 +0000 (21:15 +0100)]
Contribs: compile more tools from gettext

Except on Win32, where it doesn't compile

12 years agoDisable direct-rendering on ProRes
Jean-Baptiste Kempf [Sat, 10 Dec 2011 19:53:04 +0000 (20:53 +0100)]
Disable direct-rendering on ProRes

Crashes in the SSSE3 asm

12 years agoContribs: fix sparkle compatibility for OSX 5
Jean-Baptiste Kempf [Sat, 10 Dec 2011 18:56:26 +0000 (19:56 +0100)]
Contribs: fix sparkle compatibility for OSX 5

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoFixed potential NULL deference in dvdnav plugin.
Laurent Aimar [Sat, 10 Dec 2011 15:08:23 +0000 (16:08 +0100)]
Fixed potential NULL deference in dvdnav plugin.

12 years agoQt: SeekSlider: keep bottom chapter marks only
Francois Cartegnie [Sat, 10 Dec 2011 12:11:25 +0000 (13:11 +0100)]
Qt: SeekSlider: keep bottom chapter marks only

12 years agobootstrap: prepend extras/tools/build/bin to PATH if it exists
Rafaël Carré [Sat, 10 Dec 2011 00:40:37 +0000 (19:40 -0500)]
bootstrap: prepend extras/tools/build/bin to PATH if it exists