]> git.sesse.net Git - vlc/log
vlc
11 years agoskins2: fix text control misfunctioning when changing skin
Erwan Tulou [Mon, 1 Apr 2013 13:15:55 +0000 (15:15 +0200)]
skins2: fix text control misfunctioning when changing skin

and simplify the code a bit for better readability

11 years agoavcodec: check if we can feed variable size frames to audio encoder
Ilkka Ollakka [Mon, 1 Apr 2013 10:42:00 +0000 (13:42 +0300)]
avcodec: check if we can feed variable size frames to audio encoder

11 years agoavcodec: cleanup encodeAudio
Ilkka Ollakka [Mon, 1 Apr 2013 10:41:31 +0000 (13:41 +0300)]
avcodec: cleanup encodeAudio

Handle better cases when we don't have input frame size
same as encoder input frame size. Also gather input samples
untill we get full frame fillet and not just next block.

Set length based on used samples and not frame_size

Also try to make memory calculations cleaner so they don't
overshoot and write stuff all over.

Refs #8265

11 years agoskins2: fix initial text state to reflect documentation
Erwan Tulou [Mon, 1 Apr 2013 10:15:08 +0000 (12:15 +0200)]
skins2: fix initial text state to reflect documentation

In the Web documentation, it reads "text automatically starts scrolling" in automatic mode.

11 years agovout_ios: Don't include ES1 headers
Martin Storsjö [Sat, 30 Mar 2013 21:35:58 +0000 (23:35 +0200)]
vout_ios: Don't include ES1 headers

This vout uses ES2, not ES1. The right headers are included by
opengl.h anyway, this was just confusing and wrong.

Signed-off-by: Martin Storsjö <martin@martin.st>
11 years agoopengl: Do subtexture uploads only for the visible area
Martin Storsjö [Fri, 29 Mar 2013 23:56:52 +0000 (01:56 +0200)]
opengl: Do subtexture uploads only for the visible area

This avoids doing the intermediate copy in some cases.

Signed-off-by: Martin Storsjö <martin@martin.st>
11 years agoopengl: Check whether full_width matches the pitch
Martin Storsjö [Fri, 29 Mar 2013 23:48:29 +0000 (01:48 +0200)]
opengl: Check whether full_width matches the pitch

This is the actual width used in the upload calls if the check
matched, so this is the width we should check for.

Signed-off-by: Martin Storsjö <martin@martin.st>
11 years agoskins2: resize only similar layouts on-the-fly
Erwan Tulou [Mon, 1 Apr 2013 00:10:56 +0000 (02:10 +0200)]
skins2: resize only similar layouts on-the-fly

This fixes a regression brought by ff74e967e9777ed821734077051f55ac84a173a5

Forcefully resizing only makes sense when layouts were designed to be similar
in size in the first place. Furthermore, it cuts off a larger layout if a
smaller one is first defined when loading a skin.

Ideally, the skins2 dtd should be extended for skins developers to explicitly
express whether two layouts are tightly-coupled or not, i.e should always be
kept the same size whatever the subsequent resizing performed by the user.

11 years agoskins2: add a function that differentiates dependent and independent layouts.
Erwan Tulou [Sun, 31 Mar 2013 23:54:55 +0000 (01:54 +0200)]
skins2: add a function that differentiates dependent and independent layouts.

In skins2, a window can have multiple layouts with two different goals.

First goal, layouts have the same original size and only differ in the
presentation (different color, ...). If the active layout gets resized,
the user expects the related inactive layouts with the same size to
automatically resize, should they become active.

Second goal, layouts are different in size, e.g a reduced layout and an
expanded layout. In this case, resizing the active layout doesn't mean
resizing the other inactive layouts, since they were not meant to be
similar in size in the first place.

This patch creates a function that will be used to differentiate these
two different use of layouts.

11 years agoextras/.../ios: rework the build script
Felix Paul Kühne [Sun, 31 Mar 2013 22:43:52 +0000 (00:43 +0200)]
extras/.../ios: rework the build script

Don't blacklist yuv converters, since those are needed for DVB subtitle display (thanks a bunch, Martin)

Don't blacklist the adjust filter, since it is supported by MobileVLCKit now

Don't build libmad, since libav can decode mp3 just fine

add mooar debug for ARM builds

11 years agoskins2: simplify playlist title
Erwan Tulou [Sat, 30 Mar 2013 19:01:51 +0000 (20:01 +0100)]
skins2: simplify playlist title

Use 'input_item_GetTitleFbName', since this is actually the function used
to display title in the qt4 playlist.

11 years agoskins2: improve $N text variable
Erwan Tulou [Sat, 30 Mar 2013 18:38:32 +0000 (19:38 +0100)]
skins2: improve $N text variable

Instead of hardcoding what we think the name of the current item is, make it
configurable via the --input-title-format parameter.

This change makes skins2 more consistent with qt4 that already uses this
means to set the title of the main window.

Default display will now be "artist + title" instead of just "title".
Users who would still prefer the previous behaviour can get it with
--input-title-format '$t'

This fixes a request described at http://forum.videolan.org/viewtopic.php?f=15&t=108976

11 years agoQt: Selector: remove useless code line
Francois Cartegnie [Sat, 30 Mar 2013 16:37:42 +0000 (17:37 +0100)]
Qt: Selector: remove useless code line

11 years agodtv: More detailed DiSEqC error messages.
Zoran Turalija [Sat, 30 Mar 2013 07:52:18 +0000 (08:52 +0100)]
dtv: More detailed DiSEqC error messages.

Error messages were reused from time when there was no uncommitted
switch support. Now we have support for this feature, and we can
supply better error messages, because we know in more details what
has happened at times when error occured.

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
11 years agoLua: do not compile Console code when in WinStoreApp mode
Jean-Baptiste Kempf [Fri, 29 Mar 2013 16:25:37 +0000 (17:25 +0100)]
Lua: do not compile Console code when in WinStoreApp mode

11 years agodecklink access: fix CC decoding with some sources
Rafaël Carré [Fri, 29 Mar 2013 13:54:33 +0000 (14:54 +0100)]
decklink access: fix CC decoding with some sources

These sources have some data appended after the CC units.
Example: 0x91 0xe0 0x65 0x6e 0x67 0x7e 0x3f 0xff
                     e    n    g
Probably a language code.

11 years agodecklink access: remove copy/paste error
Rafaël Carré [Fri, 29 Mar 2013 13:53:32 +0000 (14:53 +0100)]
decklink access: remove copy/paste error

11 years agologger: add --syslog-ident parameter.
Konstantin Pavlov [Fri, 22 Mar 2013 06:42:05 +0000 (10:42 +0400)]
logger: add --syslog-ident parameter.

By default VLC uses "vlc" as syslog ident but in case more than one VLC
is logging this may not be enough.

This commit introduces --syslog-ident parameter which allows setting of
the ident.

Based on patch by Georgi Chorbadzhiyski <gf@unixsol.org>.

11 years agoFix license header
Jean-Baptiste Kempf [Thu, 28 Mar 2013 17:34:24 +0000 (18:34 +0100)]
Fix license header

11 years agoextras/.../ios: disable GPL licensed contribs
Felix Paul Kühne [Thu, 28 Mar 2013 17:17:29 +0000 (18:17 +0100)]
extras/.../ios: disable GPL licensed contribs

11 years agoAdd hotkeys to cycle through previous/next program SIDs.
Zoran Turalija [Thu, 28 Mar 2013 13:46:05 +0000 (14:46 +0100)]
Add hotkeys to cycle through previous/next program SIDs.

Change "cycle through program SIDs" to support cycle both ways (prev/next).
With this commit, it is possible e.g. to quickly change between neighbor
program SIDs back and forth in multi-program stream like DVB streams using
default x/Shift+x keys.

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
11 years agoQt: EPGView: default focus to first event
Francois Cartegnie [Thu, 28 Mar 2013 15:51:44 +0000 (16:51 +0100)]
Qt: EPGView: default focus to first event

11 years agoQt: EPGView: fix constness
Francois Cartegnie [Thu, 28 Mar 2013 15:46:24 +0000 (16:46 +0100)]
Qt: EPGView: fix constness

11 years agoQt: EPGItem: fix constness
Francois Cartegnie [Thu, 28 Mar 2013 15:45:00 +0000 (16:45 +0100)]
Qt: EPGItem: fix constness

11 years agoQt: EPGItem: add parental rating
Francois Cartegnie [Mon, 11 Mar 2013 23:31:38 +0000 (00:31 +0100)]
Qt: EPGItem: add parental rating

11 years agovlc_epg: add parental rating from ts streams.
Francois Cartegnie [Mon, 11 Mar 2013 23:31:37 +0000 (00:31 +0100)]
vlc_epg: add parental rating from ts streams.

11 years agoaccess: rdp: relicence.
Francois Cartegnie [Thu, 28 Mar 2013 14:08:21 +0000 (15:08 +0100)]
access: rdp: relicence.

Relicencing by author as it is still not altered.

11 years agoscreen: disable compilation for non-Mac Darwin flavors
Felix Paul Kühne [Thu, 28 Mar 2013 11:00:21 +0000 (12:00 +0100)]
screen: disable compilation for non-Mac Darwin flavors

11 years agovisual: default is none, not any (fixes #8354)
Rémi Denis-Courmont [Wed, 27 Mar 2013 20:50:33 +0000 (22:50 +0200)]
visual: default is none, not any (fixes #8354)

11 years agomkv: mostly useless #include
Rémi Denis-Courmont [Wed, 27 Mar 2013 20:42:28 +0000 (22:42 +0200)]
mkv: mostly useless #include

11 years agoavcodec: hw accel with frame multithreading works since libavcodec 55.01.00
Janne Grunau [Wed, 27 Mar 2013 16:05:44 +0000 (17:05 +0100)]
avcodec: hw accel with frame multithreading works since libavcodec 55.01.00

This is mostly useful if the hw accelerator cannot handle the stream.
The software decoder fallback will then use frame multithreading if it
supports it.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agoFiner volume-step for scrolling
Jean-Baptiste Kempf [Wed, 27 Mar 2013 14:07:12 +0000 (15:07 +0100)]
Finer volume-step for scrolling

Set to the closest to 5% steps

11 years agoAvcodec: Fix double FPS display
Jean-Baptiste Kempf [Wed, 27 Mar 2013 13:56:13 +0000 (14:56 +0100)]
Avcodec: Fix double FPS display

Close #5671
Patch by "rycius" on trac

11 years agoContribs: simplify gnutls rules
Jean-Baptiste Kempf [Wed, 27 Mar 2013 13:17:19 +0000 (14:17 +0100)]
Contribs: simplify gnutls rules

11 years agoContribs: make OSX use nettle too
Jean-Baptiste Kempf [Wed, 27 Mar 2013 13:16:01 +0000 (14:16 +0100)]
Contribs: make OSX use nettle too

11 years agoQt: UpdateDialog: highlight security changes
Francois Cartegnie [Tue, 26 Mar 2013 16:26:23 +0000 (17:26 +0100)]
Qt: UpdateDialog: highlight security changes

11 years agoQt: updatedialog: fix size.
Francois Cartegnie [Tue, 26 Mar 2013 15:48:55 +0000 (16:48 +0100)]
Qt: updatedialog: fix size.

Default size was wrong.
Text was really hard to real in that tiny box: lots of line breaks and
scrollbars. Text should fit in a single viewport.
Max size has been increased to 500, screen assumed at least 640px wide.

11 years agoOld RC: fix exit
Rémi Denis-Courmont [Tue, 26 Mar 2013 16:09:17 +0000 (18:09 +0200)]
Old RC: fix exit

11 years agoOld RC: cleanup use of p_sys
Rémi Denis-Courmont [Tue, 26 Mar 2013 15:54:20 +0000 (17:54 +0200)]
Old RC: cleanup use of p_sys

Also do not check that playlist is non-NULL (always true).

11 years agoinput: inline vlc_object_kill() and simplify
Rémi Denis-Courmont [Tue, 26 Mar 2013 15:46:38 +0000 (17:46 +0200)]
input: inline vlc_object_kill() and simplify

11 years agocontrib: gmp: fix duplicate symbol definitions in gnutls
Rafaël Carré [Tue, 26 Mar 2013 13:54:33 +0000 (14:54 +0100)]
contrib: gmp: fix duplicate symbol definitions in gnutls

11 years agoMore NEWS about Qt and Core
Jean-Baptiste Kempf [Tue, 26 Mar 2013 12:02:23 +0000 (13:02 +0100)]
More NEWS about Qt and Core

11 years agoQt: info_panels: Add bitrate graph
Francois Cartegnie [Wed, 22 Feb 2012 21:04:56 +0000 (22:04 +0100)]
Qt: info_panels: Add bitrate graph

11 years agoUpdate NEWS for 2.1
Jean-Baptiste Kempf [Tue, 26 Mar 2013 11:29:55 +0000 (12:29 +0100)]
Update NEWS for 2.1

11 years agovfilters: remove crop from LIST.
Francois Cartegnie [Tue, 26 Mar 2013 11:12:51 +0000 (12:12 +0100)]
vfilters: remove crop from LIST.

Missing in f0f769af311f739a410dbd6e82c7e4194a9099e8

11 years agoaccess: add Remote Desktop viewer module
Francois Cartegnie [Wed, 20 Feb 2013 21:18:18 +0000 (22:18 +0100)]
access: add Remote Desktop viewer module

11 years agoVNC: note that the library is GPLv2+
Jean-Baptiste Kempf [Tue, 26 Mar 2013 10:59:11 +0000 (11:59 +0100)]
VNC: note that the library is GPLv2+

11 years agodtv: Cosmetics - remove whitespace and correct comments spacing.
Zoran Turalija [Mon, 25 Mar 2013 07:44:07 +0000 (08:44 +0100)]
dtv: Cosmetics - remove whitespace and correct comments spacing.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agocontrib: gnutls: downgrade automake requirement
Edward Wang [Tue, 26 Mar 2013 04:02:30 +0000 (00:02 -0400)]
contrib: gnutls: downgrade automake requirement

Tested and working with automake 1.11.1, builds and works fine. Confirmed by another project as well: https://github.com/mxe/mxe/issues/128

Also removed dist-lzip because of "configure.ac:29: option `dist-lzip' not recognized"

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agoPrevent waveout to announce maps as audio device.
Denis Charmet [Mon, 25 Mar 2013 22:24:03 +0000 (23:24 +0100)]
Prevent waveout to announce maps as audio device.

This remove Probe and the multiple handle leaks that it causes.
Fix #8130

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
11 years agoRestore compatibility with some version of FFmpeg
Jean-Baptiste Kempf [Mon, 25 Mar 2013 23:34:34 +0000 (00:34 +0100)]
Restore compatibility with some version of FFmpeg

11 years agoavcodec: Correct macro definition in LIBAVUTIL_VERSION_CHECK.
Zoran Turalija [Mon, 25 Mar 2013 20:01:39 +0000 (21:01 +0100)]
avcodec: Correct macro definition in LIBAVUTIL_VERSION_CHECK.

Use parenthesis around the expression returned in LIBAVUTIL_VERSION_CHECK,
to avoid problems that can arise in future with some ways macro may be used.

Same as what has been done in LIBAVCODEC_VERSION_CHECK.

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
11 years agoQt4: remove useless alive check on input
Rémi Denis-Courmont [Mon, 25 Mar 2013 20:48:55 +0000 (22:48 +0200)]
Qt4: remove useless alive check on input

If the input dies, the state changes and the Qt input manager will
delete the input anyway.

Note that checking b_eof and b_dead here is also wrong (no memory
synchronization), but that is left for later.

11 years agoQt4: simplify input state callback management
Rémi Denis-Courmont [Mon, 25 Mar 2013 20:08:39 +0000 (22:08 +0200)]
Qt4: simplify input state callback management

11 years agoOld RC: remove cargo-cultivated input state checks
Rémi Denis-Courmont [Mon, 25 Mar 2013 19:53:27 +0000 (21:53 +0200)]
Old RC: remove cargo-cultivated input state checks

11 years agocrop: remove filter / dead code
Rémi Denis-Courmont [Mon, 25 Mar 2013 19:42:28 +0000 (21:42 +0200)]
crop: remove filter / dead code

This was disabled by a2deb59af5f4ff170c676e4a6639b95edd1d13ea and does
not even compile anymore.

11 years agostream_demux: replace deprecated vlc_object_alive()
Rémi Denis-Courmont [Mon, 25 Mar 2013 19:34:49 +0000 (21:34 +0200)]
stream_demux: replace deprecated vlc_object_alive()

11 years agoOld RC: remove tautology
Rémi Denis-Courmont [Mon, 25 Mar 2013 18:17:52 +0000 (20:17 +0200)]
Old RC: remove tautology

11 years agolirc: remove tautology
Rémi Denis-Courmont [Mon, 25 Mar 2013 18:17:35 +0000 (20:17 +0200)]
lirc: remove tautology

(Code is suspicious though.)

11 years agoLua: remove commented-out code, no functional change
Rémi Denis-Courmont [Mon, 25 Mar 2013 18:15:57 +0000 (20:15 +0200)]
Lua: remove commented-out code, no functional change

11 years agocontrib: gnutls: require version 3.0.20 or later
Rémi Denis-Courmont [Mon, 25 Mar 2013 18:14:33 +0000 (20:14 +0200)]
contrib: gnutls: require version 3.0.20 or later

11 years agognutls: require version 3.0.20 or later
Rémi Denis-Courmont [Mon, 25 Mar 2013 18:13:43 +0000 (20:13 +0200)]
gnutls: require version 3.0.20 or later

With older versions, client support pretty much does not work.

11 years agoVLM: use cancellation instead of alive check, simplify
Rémi Denis-Courmont [Mon, 25 Mar 2013 18:04:04 +0000 (20:04 +0200)]
VLM: use cancellation instead of alive check, simplify

11 years agoContribs: update GnuTLS to 3.1.10
Jean-Baptiste Kempf [Mon, 25 Mar 2013 17:42:47 +0000 (18:42 +0100)]
Contribs: update GnuTLS to 3.1.10

11 years agoFail when calling vlc_pipe in Windows Store App mode
Jean-Baptiste Kempf [Mon, 25 Mar 2013 16:53:43 +0000 (17:53 +0100)]
Fail when calling vlc_pipe in Windows Store App mode

11 years agoavcodec: Compile again with FFmpeg libavcodec library.
Zoran Turalija [Mon, 25 Mar 2013 09:40:01 +0000 (10:40 +0100)]
avcodec: Compile again with FFmpeg libavcodec library.

Make fails when using FFmpeg libavcodec version newer than checked by
LIBAVCODEC_VERSION_CHECK, because of redeclaration of many enumerators,
that are unnecessary with newer version of libavcodec library.
It is due to missing parenthesis in macro definition that are making
it wrong.

Probably same with libav libavcodec library, too.

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
11 years agoRemove reference to old RPM and ipkg support
Rémi Denis-Courmont [Mon, 25 Mar 2013 16:09:41 +0000 (18:09 +0200)]
Remove reference to old RPM and ipkg support

11 years agoContribs: update nettle to 2.6
Jean-Baptiste Kempf [Mon, 25 Mar 2013 14:36:15 +0000 (15:36 +0100)]
Contribs: update nettle to 2.6

11 years agoWindows Store App: fix plugins loading
Rafaël Carré [Mon, 25 Mar 2013 14:30:54 +0000 (15:30 +0100)]
Windows Store App: fix plugins loading

11 years agovlc_Log: allow NULL vlc_object_t parameter
Rafaël Carré [Mon, 25 Mar 2013 14:15:34 +0000 (15:15 +0100)]
vlc_Log: allow NULL vlc_object_t parameter

11 years agoQtsound: improve debug message
Jean-Baptiste Kempf [Sun, 24 Mar 2013 22:43:44 +0000 (23:43 +0100)]
Qtsound: improve debug message

11 years agocontrib: make patch not ask any questions
Rafaël Carré [Mon, 25 Mar 2013 13:14:42 +0000 (14:14 +0100)]
contrib: make patch not ask any questions

11 years agocontrib: dvdread: remove patch applied upstream
Rafaël Carré [Mon, 25 Mar 2013 13:12:55 +0000 (14:12 +0100)]
contrib: dvdread: remove patch applied upstream

11 years agolibvlc.h: restore C++ compatibility
Rafaël Carré [Mon, 25 Mar 2013 13:06:28 +0000 (14:06 +0100)]
libvlc.h: restore C++ compatibility

11 years agoauhal: implement drain
David Fuhrmann [Sun, 24 Mar 2013 20:00:08 +0000 (21:00 +0100)]
auhal: implement drain

11 years agocore: remove missing symbol
Rémi Denis-Courmont [Sun, 24 Mar 2013 18:34:31 +0000 (20:34 +0200)]
core: remove missing symbol

11 years agocore: remove unused SQL support
Rémi Denis-Courmont [Sun, 24 Mar 2013 17:10:16 +0000 (19:10 +0200)]
core: remove unused SQL support

11 years agocore: remove media library support
Rémi Denis-Courmont [Sun, 24 Mar 2013 17:11:07 +0000 (19:11 +0200)]
core: remove media library support

11 years agosqlite: remove useless plugin
Rémi Denis-Courmont [Sun, 24 Mar 2013 17:02:32 +0000 (19:02 +0200)]
sqlite: remove useless plugin

11 years agomedia library: good riddance
Rémi Denis-Courmont [Sun, 24 Mar 2013 16:57:32 +0000 (18:57 +0200)]
media library: good riddance

Big pile of non-sensical and unmaintained code.

11 years agoplaylist: remove impossible code
Rémi Denis-Courmont [Sun, 24 Mar 2013 16:55:17 +0000 (18:55 +0200)]
playlist: remove impossible code

Nothing calls vlc_object_kill() on the playlist.

11 years agolua: remove should_die (always false here)
Rémi Denis-Courmont [Sun, 24 Mar 2013 16:52:24 +0000 (18:52 +0200)]
lua: remove should_die (always false here)

11 years agolua: do not check for should_die (always false here)
Rémi Denis-Courmont [Sun, 24 Mar 2013 16:51:35 +0000 (18:51 +0200)]
lua: do not check for should_die (always false here)

11 years agocore: intf: simplify intf_DestroyAll()
Rémi Denis-Courmont [Sun, 24 Mar 2013 16:48:55 +0000 (18:48 +0200)]
core: intf: simplify intf_DestroyAll()

11 years agoncurses: remove cargo cultivated vlc_object_alive()
Rémi Denis-Courmont [Sun, 24 Mar 2013 16:45:07 +0000 (18:45 +0200)]
ncurses: remove cargo cultivated vlc_object_alive()

The ncurses thread is stuck in getch(). Checking vlc_object_alive()
does not solve anything.

11 years agoyadif: use uintptr_t when casting pointer to integer
Rémi Denis-Courmont [Sun, 24 Mar 2013 16:38:17 +0000 (18:38 +0200)]
yadif: use uintptr_t when casting pointer to integer

11 years agoadjust: removed unused values
Rémi Denis-Courmont [Sun, 24 Mar 2013 16:36:31 +0000 (18:36 +0200)]
adjust: removed unused values

11 years agovisual: remove abusive VLC_USED qualifier
Rémi Denis-Courmont [Sun, 24 Mar 2013 16:33:03 +0000 (18:33 +0200)]
visual: remove abusive VLC_USED qualifier

Confusingly enough, aout_filter_RequestVout() is also used to release
the vout. In that case, ignoring the return value is perfectly fine.

11 years agolua: remove unused parameter
Rémi Denis-Courmont [Sun, 24 Mar 2013 16:31:20 +0000 (18:31 +0200)]
lua: remove unused parameter

11 years agolua: remove unused argument
Rémi Denis-Courmont [Sun, 24 Mar 2013 16:30:11 +0000 (18:30 +0200)]
lua: remove unused argument

11 years agolua: remove dead code
Rémi Denis-Courmont [Sun, 24 Mar 2013 16:15:31 +0000 (18:15 +0200)]
lua: remove dead code

11 years agomacosx: do registration of the log callback slightly later
David Fuhrmann [Sun, 24 Mar 2013 14:07:31 +0000 (15:07 +0100)]
macosx: do registration of the log callback slightly later

This fixes mysterious interface crashes during startup, because of wrong / corrupt
initialization of several objects.

11 years agoQt4: grammar
Rémi Denis-Courmont [Sun, 24 Mar 2013 13:22:38 +0000 (15:22 +0200)]
Qt4: grammar

11 years agoQt4: remove isFirstRun parameter
Rémi Denis-Courmont [Sun, 24 Mar 2013 12:35:47 +0000 (14:35 +0200)]
Qt4: remove isFirstRun parameter

This is totally redundant. qt-privacy-ask does the exact same thing.

11 years agoQt4: clarify PNAP dialog (fixes #8100)
Rémi Denis-Courmont [Sun, 24 Mar 2013 12:28:47 +0000 (14:28 +0200)]
Qt4: clarify PNAP dialog (fixes #8100)

Also remove #ifdef from translated string since gettext can obviously
not deal with that.

11 years agoavcodec: set default channel layout on encoding
Ilkka Ollakka [Sun, 24 Mar 2013 09:39:15 +0000 (11:39 +0200)]
avcodec: set default channel layout on encoding

11 years agoavcodec: on encoding, try to match vlc and avcodec formats
Ilkka Ollakka [Sun, 24 Mar 2013 11:42:32 +0000 (13:42 +0200)]
avcodec: on encoding, try to match vlc and avcodec formats

This can avoid unnecessary format conversion.

11 years agoaout: fix typo in comment
David Fuhrmann [Sat, 23 Mar 2013 16:53:22 +0000 (17:53 +0100)]
aout: fix typo in comment

11 years agoCorrect widespread misuse of the word 'subtitle'
Edward Wang [Thu, 14 Mar 2013 15:32:24 +0000 (15:32 +0000)]
Correct widespread misuse of the word 'subtitle'

Subtitle is the adjective describing what kind of text. So "subtitle text" is an adjective phrase describing what kind of encoding.

For example, we don't listen to "audios tracks", program "videos codecs", or open "playlists files". Therefore, use the correct form of the word subtitle for the context.

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
11 years agoios: fix application crash due permitted opengl calls in background (fixes #8139)
Gleb Pinigin [Sat, 23 Mar 2013 10:31:39 +0000 (10:31 +0000)]
ios: fix application crash due permitted opengl calls in background (fixes #8139)

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>