]> git.sesse.net Git - vlc/log
vlc
11 years agodvdnav: check ISO 9660 volume descriptor unique identifier
Rémi Denis-Courmont [Sat, 27 Oct 2012 17:06:47 +0000 (20:06 +0300)]
dvdnav: check ISO 9660 volume descriptor unique identifier

And drop the lame file extension checks. This should fix #7661.

11 years agomacosx: only set b_nonembedded to true if they is no video inside main window
David Fuhrmann [Sat, 27 Oct 2012 11:34:50 +0000 (13:34 +0200)]
macosx: only set b_nonembedded to true if they is no video inside main window

This fixes several bugs, when we start first vout in main window, but a second one
inside a extra video window.

11 years agomacosx: only set videoplayback to false when last vout window closes
David Fuhrmann [Sat, 27 Oct 2012 11:13:21 +0000 (13:13 +0200)]
macosx: only set videoplayback to false when last vout window closes

For instance, when we disable visualisations, the playback isn't finished yet,
necessarily.

11 years agomacosx: change all default window titles to VLC media player
David Fuhrmann [Sat, 27 Oct 2012 11:12:05 +0000 (13:12 +0200)]
macosx: change all default window titles to VLC media player

11 years agomacosx: also update the window name after new video window is created
David Fuhrmann [Sat, 27 Oct 2012 11:00:50 +0000 (13:00 +0200)]
macosx: also update the window name after new video window is created

11 years agomacosx: add basic support for multiple vout windows in embedded case
David Fuhrmann [Sat, 27 Oct 2012 10:45:01 +0000 (12:45 +0200)]
macosx: add basic support for multiple vout windows in embedded case

This fixes crashes which occured when trying to open the second vout.

11 years agomacosx: move vout initialisation to vout controller
David Fuhrmann [Sat, 27 Oct 2012 10:36:22 +0000 (12:36 +0200)]
macosx: move vout initialisation to vout controller

11 years agoPulseAudio: log buffer attribute changes
Rémi Denis-Courmont [Fri, 26 Oct 2012 18:34:44 +0000 (21:34 +0300)]
PulseAudio: log buffer attribute changes

11 years agoAdd a new aac audio encoder module based on the fdkaac library. It works correctly...
Sergio Ammirata [Thu, 25 Oct 2012 15:10:07 +0000 (11:10 -0400)]
Add a new aac audio encoder module based on the fdkaac library. It works correctly up to 5.1 as the current version of the library has problems with 7.1.

Signed-off-by: Ilkka Ollakka <ileoo@videolan.org>
11 years agoprojectM: cosmetic, fix syntax coloring
Rémi Denis-Courmont [Thu, 25 Oct 2012 18:58:43 +0000 (21:58 +0300)]
projectM: cosmetic, fix syntax coloring

11 years agoGLX: add OpenGL provider plugin
Rémi Denis-Courmont [Thu, 25 Oct 2012 18:43:35 +0000 (21:43 +0300)]
GLX: add OpenGL provider plugin

11 years agoGLX: drop support for GLX version 1.2
Rémi Denis-Courmont [Thu, 25 Oct 2012 17:01:00 +0000 (20:01 +0300)]
GLX: drop support for GLX version 1.2

This is useless as we require OpenGL 1.4.

11 years agoFix code indentation
Jean-Baptiste Kempf [Thu, 25 Oct 2012 14:21:18 +0000 (16:21 +0200)]
Fix code indentation

11 years agoImage: fix vim typo
Jean-Baptiste Kempf [Thu, 25 Oct 2012 13:05:16 +0000 (15:05 +0200)]
Image: fix vim typo

11 years agoavcodec: only set min/maxrate if rc-buffer-size is set
Ilkka Ollakka [Wed, 24 Oct 2012 20:58:49 +0000 (23:58 +0300)]
avcodec: only set min/maxrate if rc-buffer-size is set

11 years agoavcodec: use av_freep in encode_audio2 case too
Ilkka Ollakka [Wed, 24 Oct 2012 19:47:22 +0000 (22:47 +0300)]
avcodec: use av_freep in encode_audio2 case too

11 years agoavcodec: flush buffer and use encode_audio2() on audio
Ilkka Ollakka [Wed, 24 Oct 2012 19:34:16 +0000 (22:34 +0300)]
avcodec: flush buffer and use encode_audio2() on audio

Take2 as now we have new enough libavcodec

11 years agoUpgrade libavformat requirement to 53.21
Jean-Baptiste Kempf [Wed, 24 Oct 2012 17:07:11 +0000 (19:07 +0200)]
Upgrade libavformat requirement to 53.21

11 years agoUpdate required version of libavcodec to 53.34
Jean-Baptiste Kempf [Wed, 24 Oct 2012 16:57:21 +0000 (18:57 +0200)]
Update required version of libavcodec to 53.34

11 years agoVorbis: code cosmetics
Jean-Baptiste Kempf [Wed, 24 Oct 2012 10:59:30 +0000 (12:59 +0200)]
Vorbis: code cosmetics

11 years agoOpenGL: use gl(|Client)ActiveTexture directly (fixes #7558)
Rémi Denis-Courmont [Wed, 24 Oct 2012 16:49:13 +0000 (19:49 +0300)]
OpenGL: use gl(|Client)ActiveTexture directly (fixes #7558)

glActiveTexture() seems mandatory.
glClientActiveTexture() requires OpenGL version >= 1.3.
Currently, OpenGL version >= 1.4 is assumed anyway.

11 years agoavcodec: use av_freep instead of avcodec_free_frame
Ilkka Ollakka [Wed, 24 Oct 2012 16:21:01 +0000 (19:21 +0300)]
avcodec: use av_freep instead of avcodec_free_frame

avcodec_free_frame isn't in untill 54.28.0 and were in 52.25.0

11 years agotranscode: actually do the audio encode flushing
Ilkka Ollakka [Wed, 24 Oct 2012 15:56:11 +0000 (18:56 +0300)]
transcode: actually do the audio encode flushing

11 years agoavcodec: settings pts doesn't segfault with mp4v
Ilkka Ollakka [Wed, 24 Oct 2012 06:17:43 +0000 (09:17 +0300)]
avcodec: settings pts doesn't segfault with mp4v

11 years agoavcodec: allocate frame properly and free it after use
Ilkka Ollakka [Wed, 24 Oct 2012 06:12:43 +0000 (09:12 +0300)]
avcodec: allocate frame properly and free it after use

11 years agoavcodec: remove pts workaround
Ilkka Ollakka [Wed, 24 Oct 2012 06:12:17 +0000 (09:12 +0300)]
avcodec: remove pts workaround

11 years agoavcodec: p_buffer_out was unused
Ilkka Ollakka [Fri, 19 Oct 2012 10:51:43 +0000 (13:51 +0300)]
avcodec: p_buffer_out was unused

11 years agoEGL: print error when configuration is not usable (refs #7634)
Rémi Denis-Courmont [Tue, 23 Oct 2012 15:06:24 +0000 (18:06 +0300)]
EGL: print error when configuration is not usable (refs #7634)

11 years agoWin32: fix clock sources enumeration
Rémi Denis-Courmont [Mon, 22 Oct 2012 18:22:54 +0000 (21:22 +0300)]
Win32: fix clock sources enumeration

11 years agomacosx: fixed Reveal-in-Finder for eastern european umlauts and probably other charac...
Felix Paul Kühne [Mon, 22 Oct 2012 17:47:52 +0000 (19:47 +0200)]
macosx: fixed Reveal-in-Finder for eastern european umlauts and probably other characters without a ISO-Latin fallback (close #7631)

11 years agoWin32: try to fix build on some Mingw versions
Rémi Denis-Courmont [Mon, 22 Oct 2012 15:24:39 +0000 (18:24 +0300)]
Win32: try to fix build on some Mingw versions

11 years agosrc/input/stream_demux.c: fix DStreamThread()
Frédéric Yhuel [Mon, 22 Oct 2012 12:48:24 +0000 (14:48 +0200)]
src/input/stream_demux.c: fix DStreamThread()

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
11 years agoQt4: Avoid a potential division by zero
Edward Wang [Sun, 21 Oct 2012 15:28:01 +0000 (11:28 -0400)]
Qt4: Avoid a potential division by zero

Fixes an annoying crash for me.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agokva: add always-on-top support
KO Myung-Hun [Sun, 21 Oct 2012 11:19:46 +0000 (20:19 +0900)]
kva: add always-on-top support

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agokva: hide mouse pointer only if it is not hidden
KO Myung-Hun [Sun, 21 Oct 2012 11:21:15 +0000 (20:21 +0900)]
kva: hide mouse pointer only if it is not hidden

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agoFix typo in comment
Pierre Ynard [Mon, 22 Oct 2012 00:46:02 +0000 (02:46 +0200)]
Fix typo in comment

11 years agoh264 packetizer: don't swap around CC data
Rafaël Carré [Sun, 21 Oct 2012 20:37:13 +0000 (22:37 +0200)]
h264 packetizer: don't swap around CC data

When we output a picture we reinit p_sys->cc_next anyway

sys_t->cc represents the CC data for the picture about to be output
sys_t->cc_next will hold the CC data for the picture currently being input

11 years agoOld RC: audio device or stereo mode can be changed when paused
Rémi Denis-Courmont [Sun, 21 Oct 2012 18:10:16 +0000 (21:10 +0300)]
Old RC: audio device or stereo mode can be changed when paused

11 years agogcrypt: add SHA-256 (fixes #7627)
Rémi Denis-Courmont [Sun, 21 Oct 2012 07:21:26 +0000 (10:21 +0300)]
gcrypt: add SHA-256 (fixes #7627)

11 years agomacosx: implement vout actions handling for multiple vout windows
David Fuhrmann [Sat, 20 Oct 2012 13:15:19 +0000 (15:15 +0200)]
macosx: implement vout actions handling for multiple vout windows

Now, everything from the video menu and the basic stuff like fullscreen
should work. If it does'nt (e.g. fullscreen and resize with video-splitter module enabled)
please blame the core first. ;-)

TODO: There might be some getVout()-calls left which should be investigated.

close #6814

11 years agomacosx: fspanel: give up focus to the right fullscreen window
David Fuhrmann [Sat, 20 Oct 2012 09:46:25 +0000 (11:46 +0200)]
macosx: fspanel: give up focus to the right fullscreen window

11 years agoDirectSound: simplify channels configuration a bit
Rémi Denis-Courmont [Sat, 20 Oct 2012 12:40:07 +0000 (15:40 +0300)]
DirectSound: simplify channels configuration a bit

11 years agovlc: Convert command line arguments to UTF-8 on OS/2
KO Myung-Hun [Sat, 13 Oct 2012 10:23:02 +0000 (19:23 +0900)]
vlc: Convert command line arguments to UTF-8 on OS/2

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
11 years agoRemove dead subcategories
Rémi Denis-Courmont [Fri, 19 Oct 2012 19:29:27 +0000 (22:29 +0300)]
Remove dead subcategories

11 years agoGnuTLS: use network category
Rémi Denis-Courmont [Fri, 19 Oct 2012 19:19:07 +0000 (22:19 +0300)]
GnuTLS: use network category

11 years agoRemove SUBCAT_VIDEO_VFILTER2
Rémi Denis-Courmont [Fri, 19 Oct 2012 19:16:58 +0000 (22:16 +0300)]
Remove SUBCAT_VIDEO_VFILTER2

11 years agoaout: use distinct "audio converter" capability for converters
Rémi Denis-Courmont [Fri, 19 Oct 2012 19:09:01 +0000 (22:09 +0300)]
aout: use distinct "audio converter" capability for converters

Contrary to normal audio filters, audio converters cannot change their
input and output formats, cannot have identical input and output
formats and are probed automatically rather than by name.
Using the same capability served no useful purpose.

11 years agoRevert "xiph demux: Kill a warning (comparison betw. signed and unsigned)"
Jean-Baptiste Kempf [Fri, 19 Oct 2012 15:35:37 +0000 (17:35 +0200)]
Revert "xiph demux: Kill a warning (comparison betw. signed and unsigned)"

This reverts commit ea5e62b58eb0660153f73b0870540e5175d00820.

This removes all code from Andri Pálsson

11 years agoUAC.dll: build with static libgcc/libstdc++
Rafaël Carré [Fri, 19 Oct 2012 14:30:55 +0000 (16:30 +0200)]
UAC.dll: build with static libgcc/libstdc++

11 years agodemux/mp4: be less picky wrt VC-1 profiles we accept
Frédéric Yhuel [Fri, 19 Oct 2012 14:03:49 +0000 (16:03 +0200)]
demux/mp4: be less picky wrt VC-1 profiles we accept

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agoconfigure: added a new flag to optionally compile the minimal macosx UI module
Felix Paul Kühne [Fri, 19 Oct 2012 11:01:36 +0000 (13:01 +0200)]
configure: added a new flag to optionally compile the minimal macosx UI module

11 years agominimal_macosx: fixed compilation warnings
Felix Paul Kühne [Fri, 19 Oct 2012 11:01:05 +0000 (13:01 +0200)]
minimal_macosx: fixed compilation warnings

11 years agomacosx: thou shall not close AppKit windows off main thread
Felix Paul Kühne [Fri, 19 Oct 2012 10:39:48 +0000 (12:39 +0200)]
macosx: thou shall not close AppKit windows off main thread

11 years agoUpdate files included in po
Jean-Baptiste Kempf [Fri, 19 Oct 2012 10:38:22 +0000 (12:38 +0200)]
Update files included in po

11 years agoCDDA: fix indentation
Jean-Baptiste Kempf [Fri, 19 Oct 2012 10:08:57 +0000 (12:08 +0200)]
CDDA: fix indentation

11 years agoUpdated and reactivated minimal_macosx gui module, which is
James Bates [Mon, 8 Oct 2012 15:07:22 +0000 (17:07 +0200)]
Updated and reactivated minimal_macosx gui module, which is

 needed by the npapi browser plugin on OS X

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agoKoreus: fix on broken pages
Jean-Baptiste Kempf [Fri, 19 Oct 2012 09:59:26 +0000 (11:59 +0200)]
Koreus: fix on broken pages

11 years agovlc_interface: fix preprocessor definition
Daniel Mierswa [Fri, 19 Oct 2012 09:25:26 +0000 (11:25 +0200)]
vlc_interface: fix preprocessor definition

the wrong string list (dot instead of comma) makes the media-library
build fail

Signed-off-by: Daniel Mierswa <impulze@impulze.org>
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agotranscode: send NULL packet to audio encoder when closing
Ilkka Ollakka [Fri, 19 Oct 2012 09:20:58 +0000 (12:20 +0300)]
transcode: send NULL packet to audio encoder when closing

As with Video-encoders, audio encoder can flush buffers in that case.
Currently avcodec doesn't handle flushing and other encoders in this
changeset (flac,speex,twolame,vorbis) have only boilerplate to check
against NULL input so they don't crash.

11 years agoconfigure.ac: add libvcdinfo to --enable-vcdx requirements
Daniel Mierswa [Fri, 19 Oct 2012 09:01:05 +0000 (11:01 +0200)]
configure.ac: add libvcdinfo to --enable-vcdx requirements

the module uses libvcd/info.h which is provided by that particular
library and it was also a dependency before the pkg-config detection

Signed-off-by: Daniel Mierswa <impulze@impulze.org>
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agopulse: do not resync on suspend
Rémi Denis-Courmont [Thu, 18 Oct 2012 19:49:53 +0000 (22:49 +0300)]
pulse: do not resync on suspend

Suspension should not occur during playback. However, it can happen
while the stream is starting. In that case, forgetting the
synchronization informations is more harmful than good.

11 years agopulse: fix start time, do not confuse first and last PTS in buffer
Rémi Denis-Courmont [Thu, 18 Oct 2012 19:46:35 +0000 (22:46 +0300)]
pulse: fix start time, do not confuse first and last PTS in buffer

11 years agoNever load module with zero score implicitly
Rémi Denis-Courmont [Thu, 18 Oct 2012 18:17:30 +0000 (21:17 +0300)]
Never load module with zero score implicitly

Regression from cf98594d6abd2e68fabfc440677a93bfe0f0e631.

11 years agosout: mostly fix and clean up pace control setting
Rémi Denis-Courmont [Thu, 18 Oct 2012 17:49:16 +0000 (20:49 +0300)]
sout: mostly fix and clean up pace control setting

Still transcode and ES are broken.

11 years agocontrib: dvdnav: disable examples using configure option
Rafaël Carré [Thu, 18 Oct 2012 17:34:20 +0000 (19:34 +0200)]
contrib: dvdnav: disable examples using configure option

11 years agomacosx: fixed rare crash when trying to send debug messages
Felix Paul Kühne [Thu, 18 Oct 2012 16:36:59 +0000 (18:36 +0200)]
macosx: fixed rare crash when trying to send debug messages

This can happen while the interface module isn't fully initialized yet or anymore

11 years agounzip: fix compilation warning
Felix Paul Kühne [Sun, 19 Aug 2012 17:22:15 +0000 (19:22 +0200)]
unzip: fix compilation warning

11 years agoSHM: set true PTS instead of synthetic one (fixes #7579)
Rémi Denis-Courmont [Thu, 18 Oct 2012 16:00:36 +0000 (19:00 +0300)]
SHM: set true PTS instead of synthetic one (fixes #7579)

11 years agoXCB screen: set true PTS instead of synthetic one
Rémi Denis-Courmont [Thu, 18 Oct 2012 15:56:02 +0000 (18:56 +0300)]
XCB screen: set true PTS instead of synthetic one

This should account for long term drift better, especially when
synchronizing with audio or video capture.

11 years agocontrib: harfbuzz: disable non-native backends
Grigori Goronzy [Thu, 18 Oct 2012 14:12:34 +0000 (16:12 +0200)]
contrib: harfbuzz: disable non-native backends

Disable Uniscribe, CoreText and hb-old backends. They're not required
anymore due to inclusion of UCDN.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agoWin32: correctly implement flockfile() et al
Rémi Denis-Courmont [Thu, 18 Oct 2012 10:58:25 +0000 (13:58 +0300)]
Win32: correctly implement flockfile() et al

This should fix gibberish interlaced log messages.

11 years agoconfigure: check Linux syscalls only on Linux
Rémi Denis-Courmont [Thu, 18 Oct 2012 15:34:48 +0000 (18:34 +0300)]
configure: check Linux syscalls only on Linux

They could work differently on other systems. Better safe than sorry.

11 years agoMacOS: use X.7 SDK by default
Jean-Baptiste Kempf [Thu, 18 Oct 2012 15:00:42 +0000 (17:00 +0200)]
MacOS: use X.7 SDK by default

11 years agomkv: fix the problem that mkv is not played on OS/2
KO Myung-Hun [Wed, 17 Oct 2012 09:01:53 +0000 (18:01 +0900)]
mkv: fix the problem that mkv is not played on OS/2

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agocontrib: HarfBuzz version 0.9.5
Naohiro KORIYAMA [Thu, 18 Oct 2012 12:58:20 +0000 (21:58 +0900)]
contrib: HarfBuzz version 0.9.5

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agoContribs: update libass to 0.10.1
Jean-Baptiste Kempf [Thu, 18 Oct 2012 10:54:23 +0000 (12:54 +0200)]
Contribs: update libass to 0.10.1

11 years agoUpdate the release Howto
Jean-Baptiste Kempf [Thu, 18 Oct 2012 09:56:31 +0000 (11:56 +0200)]
Update the release Howto

11 years agorotate: don't branch inside spinlock
Pierre Ynard [Thu, 18 Oct 2012 02:39:05 +0000 (04:39 +0200)]
rotate: don't branch inside spinlock

11 years agocontrib/ffmpeg: fixed compilation for the iOS simulator
Felix Paul Kühne [Wed, 17 Oct 2012 15:49:45 +0000 (17:49 +0200)]
contrib/ffmpeg: fixed compilation for the iOS simulator

11 years agocontrib/postproc: fixed compilation for the iOS simulator
Felix Paul Kühne [Wed, 17 Oct 2012 15:54:10 +0000 (17:54 +0200)]
contrib/postproc: fixed compilation for the iOS simulator

11 years agoContribs: forcing -O2 on libavcodec is useless on small size
Jean-Baptiste Kempf [Wed, 17 Oct 2012 15:34:11 +0000 (17:34 +0200)]
Contribs: forcing -O2 on libavcodec is useless on small size

It is actually bigger on ARM/Android...

11 years agocontrib/mad: use -O3 instead -O4, since the latter results can end up to be undefined
Felix Paul Kühne [Wed, 12 Sep 2012 23:38:11 +0000 (01:38 +0200)]
contrib/mad: use -O3 instead -O4, since the latter results can end up to be undefined

11 years agoextras/tools: updated the iOS build script
Felix Paul Kühne [Wed, 8 Aug 2012 13:10:24 +0000 (15:10 +0200)]
extras/tools: updated the iOS build script

- Use the iOS 6 SDK by default while retaining 5.1 compatibility

- enable ogg, speex, theora, flac

- limit the number of installed modules to the actually useful ones for this port

- add support for OPUS

11 years agoAAC detection is not strong enough to force the aac demuxer
Jean-Baptiste Kempf [Wed, 17 Oct 2012 13:40:21 +0000 (15:40 +0200)]
AAC detection is not strong enough to force the aac demuxer

11 years agoandroid: fix detached threads leak
Rafaël Carré [Wed, 17 Oct 2012 11:12:50 +0000 (13:12 +0200)]
android: fix detached threads leak

11 years agoAnd yet another translator that cannot read English (fixes #7605)
Rémi Denis-Courmont [Tue, 16 Oct 2012 20:59:38 +0000 (23:59 +0300)]
And yet another translator that cannot read English (fixes #7605)

11 years agoavcodec: probe acceleration module only once
Rémi Denis-Courmont [Tue, 16 Oct 2012 19:41:52 +0000 (22:41 +0300)]
avcodec: probe acceleration module only once

The acceleration plugin now returns the expected pixel format instead
of checking it. That way, the avcodec module can check it directly.

This works as long as each acceleration plugin supports only one pixel
format (otherwise a table would be required).

11 years agoAndroid: remove polling timer in mwait() and msleep()
Rémi Denis-Courmont [Mon, 15 Oct 2012 18:21:32 +0000 (21:21 +0300)]
Android: remove polling timer in mwait() and msleep()

11 years agoshm: fix capture with non page-size frame size (maybe fixes #7579)
Rémi Denis-Courmont [Tue, 16 Oct 2012 15:47:35 +0000 (18:47 +0300)]
shm: fix capture with non page-size frame size (maybe fixes #7579)

11 years agoAndroid: remove contention in vlc_cond_wait()
Rémi Denis-Courmont [Mon, 15 Oct 2012 18:16:04 +0000 (21:16 +0300)]
Android: remove contention in vlc_cond_wait()

11 years agoAndroid: use monotonic clock
Rémi Denis-Courmont [Mon, 15 Oct 2012 17:53:49 +0000 (20:53 +0300)]
Android: use monotonic clock

11 years agomkv: fixed playback of certain files on 32bit Apple platforms
Felix Paul Kühne [Tue, 16 Oct 2012 14:59:22 +0000 (16:59 +0200)]
mkv: fixed playback of certain files on 32bit Apple platforms

11 years agomacosx: fixed compilation for llvm-gcc-4.2
Felix Paul Kühne [Tue, 16 Oct 2012 13:57:06 +0000 (15:57 +0200)]
macosx: fixed compilation for llvm-gcc-4.2

11 years agoi18n: update skipped files
Pierre Ynard [Mon, 15 Oct 2012 19:57:45 +0000 (21:57 +0200)]
i18n: update skipped files

11 years agoi18n: add new files
Pierre Ynard [Mon, 15 Oct 2012 19:43:58 +0000 (21:43 +0200)]
i18n: add new files

... and an old file with new translations

11 years agoi420_yuy2: correct placement of target attributes
Rémi Denis-Courmont [Mon, 15 Oct 2012 15:02:06 +0000 (18:02 +0300)]
i420_yuy2: correct placement of target attributes

11 years agopng: Check length before read
Edward Wang [Sun, 14 Oct 2012 22:58:18 +0000 (18:58 -0400)]
png: Check length before read

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agomediacodec: Check for exceptions after MediaCodec.start()
Martin Storsjö [Sun, 14 Oct 2012 21:46:57 +0000 (00:46 +0300)]
mediacodec: Check for exceptions after MediaCodec.start()

Also log a warning if MediaCodec.configure() threw an exception.

This fixes issues when playing back H264 over RTSP on devices
supporting MediaCodec - this makes it fall back cleanly to other
decoders. (The actual issue with playing back these streams is
not investigated yet.)

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agoContribs: update libpng to 1.5.13
Jean-Baptiste Kempf [Sun, 14 Oct 2012 21:12:53 +0000 (23:12 +0200)]
Contribs: update libpng to 1.5.13

11 years agoOS/2: enable access_sftp
KO Myung-Hun [Sun, 14 Oct 2012 11:21:16 +0000 (20:21 +0900)]
OS/2: enable access_sftp

Signed-off-by: Rafaël Carré <funman@videolan.org>