]> git.sesse.net Git - vlc/log
vlc
15 years ago(live555) RTSP fastforward works from Qt4 interface.
Jean-Paul Saman [Wed, 19 Nov 2008 14:45:19 +0000 (15:45 +0100)]
(live555) RTSP fastforward works from Qt4 interface.

15 years agoFixed video offsets and horizontal edge blending.
COCQUEBERT Cédric [Wed, 19 Nov 2008 21:11:26 +0000 (22:11 +0100)]
Fixed video offsets and horizontal edge blending.

Signed-off-by: COCQUEBERT Cédric <cedric.cocquebert@cea.fr>
Signed-off-by: Laurent Aimar <fenrir@videolan.org>
15 years agoFixed deinterlacing for i422.
Laurent Aimar [Wed, 19 Nov 2008 20:53:17 +0000 (21:53 +0100)]
Fixed deinterlacing for i422.

Initial report/patch by Marian Durkovic.

15 years agoFix deadlock when the decoder return an error.
Laurent Aimar [Wed, 19 Nov 2008 20:22:30 +0000 (21:22 +0100)]
Fix deadlock when the decoder return an error.

15 years agoFixed rawvideo packetizer.
Laurent Aimar [Wed, 19 Nov 2008 20:21:55 +0000 (21:21 +0100)]
Fixed rawvideo packetizer.

15 years agoMake icecast server detection more robust.
Laurent Aimar [Wed, 19 Nov 2008 19:22:01 +0000 (20:22 +0100)]
Make icecast server detection more robust.

15 years agoFix potential invalid sout buffer chain in decoder.
Laurent Aimar [Wed, 19 Nov 2008 18:45:03 +0000 (19:45 +0100)]
Fix potential invalid sout buffer chain in decoder.

15 years agolibvlc: get right name of audio output module
Lukas Durfina [Tue, 18 Nov 2008 21:46:40 +0000 (22:46 +0100)]
libvlc: get right name of audio output module

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
15 years agoAdded timeshift support.
Laurent Aimar [Tue, 18 Nov 2008 19:30:28 +0000 (20:30 +0100)]
Added timeshift support.

15 years agoImproved ogm support + fix typo.
Laurent Aimar [Tue, 18 Nov 2008 19:16:28 +0000 (20:16 +0100)]
Improved ogm support + fix typo.

15 years agoFixed possible out of bound access + infinite loop in dirac header.
Laurent Aimar [Tue, 18 Nov 2008 18:39:24 +0000 (19:39 +0100)]
Fixed possible out of bound access + infinite loop in dirac header.

15 years agoCosmetics.
Laurent Aimar [Tue, 18 Nov 2008 18:31:47 +0000 (19:31 +0100)]
Cosmetics.

15 years agoFixed double free.
Laurent Aimar [Tue, 18 Nov 2008 18:19:50 +0000 (19:19 +0100)]
Fixed double free.

Fixed double free.

15 years agoDo not delay processing of the first data page of the last logical stream
Vincent Penquerc'h [Tue, 11 Nov 2008 20:42:31 +0000 (20:42 +0000)]
Do not delay processing of the first data page of the last logical stream

The first data page of a physical stream is stored in the relevant logical stream
in Ogg_FindLogicalStreams. Therefore, we must not read a page and only update the
stream it belongs to if we haven't processed this first page yet. If we do, we
will only process that first page whenever we find the second page for this stream.
While this is fine for Vorbis and Theora, which are continuous codecs, which means
the second page will arrive real quick, this is not fine for Kate, whose second
data page will typically arrive much later.
This means it is now possible to seek right at the start of a stream where the last
logical stream is Kate, without having to wait for the second data page to unblock
the first one, which is the one that triggers the 'no more headers to backup' code.
And, as we all know, seeking without having backed up all headers is bad, since the
codec will fail to initialize if it's missing its headers.

Signed-off-by: Laurent Aimar <fenrir@videolan.org>
15 years agoFixed block_Realloc when block_t->p_buffer has changed.
Laurent Aimar [Tue, 18 Nov 2008 18:05:49 +0000 (19:05 +0100)]
Fixed block_Realloc when block_t->p_buffer has changed.

15 years agoUse vlc_rand_bytes for utf8_mkstemp.
Laurent Aimar [Tue, 18 Nov 2008 18:05:22 +0000 (19:05 +0100)]
Use vlc_rand_bytes for utf8_mkstemp.

15 years agoCosmetics (use PES_EXTENDED_STREAM_ID)
Laurent Aimar [Tue, 18 Nov 2008 00:21:05 +0000 (01:21 +0100)]
Cosmetics (use PES_EXTENDED_STREAM_ID)

15 years agoAdded utf8_mkstemp to src/libvlccore.sym.
Laurent Aimar [Tue, 18 Nov 2008 00:19:41 +0000 (01:19 +0100)]
Added utf8_mkstemp to src/libvlccore.sym.

15 years agoFixed es selection regression.
Laurent Aimar [Mon, 17 Nov 2008 23:47:31 +0000 (00:47 +0100)]
Fixed es selection regression.

15 years agoFaster close when timeshift is active.
Laurent Aimar [Mon, 17 Nov 2008 23:17:30 +0000 (00:17 +0100)]
Faster close when timeshift is active.

It is useless to read the stream data when flushing.

15 years agoFixed a segfault in ES_OUT_GET_ES_STATE (typo).
Laurent Aimar [Mon, 17 Nov 2008 23:09:43 +0000 (00:09 +0100)]
Fixed a segfault in ES_OUT_GET_ES_STATE (typo).

15 years agoUse utf8_mkstemp in timeshift.
Laurent Aimar [Mon, 17 Nov 2008 23:07:14 +0000 (00:07 +0100)]
Use utf8_mkstemp in timeshift.

It should fix win32 build.

15 years agoAdded a utf8_mkstemp implementation.
Laurent Aimar [Mon, 17 Nov 2008 23:05:49 +0000 (00:05 +0100)]
Added a utf8_mkstemp implementation.

15 years agoReduce memory usage (-28%) by packing index structures.
Laurent Aimar [Mon, 17 Nov 2008 18:55:01 +0000 (19:55 +0100)]
Reduce memory usage (-28%) by packing index structures.

It is done by using __attribute__((__packed__)) when available.

15 years agoUpdated "can-pause" value.
Laurent Aimar [Mon, 17 Nov 2008 18:36:37 +0000 (19:36 +0100)]
Updated "can-pause" value.

15 years agoAdded timeshift options (input-timeshift-granularity/input-timeshift-path).
Laurent Aimar [Mon, 17 Nov 2008 18:36:00 +0000 (19:36 +0100)]
Added timeshift options (input-timeshift-granularity/input-timeshift-path).

15 years agoFixed missing unlock in case of error (timeshift).
Laurent Aimar [Mon, 17 Nov 2008 18:34:24 +0000 (19:34 +0100)]
Fixed missing unlock in case of error (timeshift).

15 years agoRemoved timeshift module.
Laurent Aimar [Mon, 17 Nov 2008 18:05:40 +0000 (19:05 +0100)]
Removed timeshift module.

 It has been replaced by generic timeshift at es_out level.
The only regressions I see is:
 - it is not (yet) possible to timeshift module that (wrongly) advertize
 pace control.
 - the new timeshift still uses too much memory (~20Mbytes per hour for DVB-T).

15 years agoDump data to disk when timeshifting.
Laurent Aimar [Sun, 16 Nov 2008 23:42:29 +0000 (00:42 +0100)]
Dump data to disk when timeshifting.

15 years agoPrepare file storage in timeshift.
Laurent Aimar [Sun, 16 Nov 2008 20:34:58 +0000 (21:34 +0100)]
Prepare file storage in timeshift.

15 years agoClean up.
Laurent Aimar [Sun, 16 Nov 2008 13:47:40 +0000 (14:47 +0100)]
Clean up.

15 years agoAdded frame by frame support in es out timeshift.
Laurent Aimar [Sun, 16 Nov 2008 12:40:53 +0000 (13:40 +0100)]
Added frame by frame support in es out timeshift.

15 years agoPrivatized ES_OUT_SET_ACTIVE/MODE and removed ES_OUT_GET_ACTIVE/MODE/GROUP.
Laurent Aimar [Sun, 16 Nov 2008 11:37:52 +0000 (12:37 +0100)]
Privatized ES_OUT_SET_ACTIVE/MODE and removed ES_OUT_GET_ACTIVE/MODE/GROUP.

15 years agoStop timeshifting when unused.
Laurent Aimar [Sun, 16 Nov 2008 01:55:38 +0000 (02:55 +0100)]
Stop timeshifting when unused.

15 years agoCosmetics.
Laurent Aimar [Sun, 16 Nov 2008 01:45:48 +0000 (02:45 +0100)]
Cosmetics.

15 years agoUntangled es_out_timeshift lock/wait/properties.
Laurent Aimar [Sun, 16 Nov 2008 01:44:38 +0000 (02:44 +0100)]
Untangled es_out_timeshift lock/wait/properties.

15 years agoNo functionnal changes (timeshift).
Laurent Aimar [Sun, 16 Nov 2008 00:27:48 +0000 (01:27 +0100)]
No functionnal changes (timeshift).

15 years agoCosmetics.
Laurent Aimar [Sat, 15 Nov 2008 23:08:15 +0000 (00:08 +0100)]
Cosmetics.

15 years agoAuto reset rate to source rate when no more buffered data.
Laurent Aimar [Sat, 15 Nov 2008 20:04:26 +0000 (21:04 +0100)]
Auto reset rate to source rate when no more buffered data.

15 years agoAdded rate change support to es_out_timeshift.
Laurent Aimar [Sat, 15 Nov 2008 19:28:08 +0000 (20:28 +0100)]
Added rate change support to es_out_timeshift.

15 years agoCosmetics.
Laurent Aimar [Fri, 14 Nov 2008 00:58:09 +0000 (01:58 +0100)]
Cosmetics.

15 years agoImplemented pause for non pausable stream (in memory).
Laurent Aimar [Fri, 14 Nov 2008 00:53:30 +0000 (01:53 +0100)]
Implemented pause for non pausable stream (in memory).

15 years agoCosmetic.
Laurent Aimar [Wed, 12 Nov 2008 23:14:12 +0000 (00:14 +0100)]
Cosmetic.

15 years agoAllow using es_out timeshift pause support.
Laurent Aimar [Wed, 12 Nov 2008 23:10:01 +0000 (00:10 +0100)]
Allow using es_out timeshift pause support.

15 years agoBegin es out timeshift implementation.
Laurent Aimar [Wed, 12 Nov 2008 23:08:30 +0000 (00:08 +0100)]
Begin es out timeshift implementation.

There are some problems:
- The data are stored in memory.
- Only pause/unpause are supported.
- Data are sent too fast to the next es_out.

15 years agoAdded initial skeleton for es_out timeshift support.
Laurent Aimar [Tue, 11 Nov 2008 20:26:46 +0000 (21:26 +0100)]
Added initial skeleton for es_out timeshift support.

It is not yet functionnal.

15 years agoFixed ES_OUT_SET_FMT name.
Laurent Aimar [Fri, 7 Nov 2008 00:08:49 +0000 (01:08 +0100)]
Fixed ES_OUT_SET_FMT name.

15 years agoPatch to enable/disable key and mouse handling at vout level:
Jean-Baptiste Kempf [Mon, 17 Nov 2008 15:48:04 +0000 (16:48 +0100)]
Patch to enable/disable key and mouse handling at vout level:

- x11-event option is renamed vout-event and become global
(libvlc-module.c)
- var_CreateGetInteger is called once at x11 initialization

Patch by Joseph Tulou

15 years agoTemporarily work around crashing on Windows due to %zu
Pierre Ynard [Mon, 17 Nov 2008 11:08:28 +0000 (12:08 +0100)]
Temporarily work around crashing on Windows due to %zu

The printf functions on Windows don't support the z length modifier,
which can shift field arguments, and causes an unconditional crash in
modules.c on start-up. For now, strip it on Windows and have vlc work
again, until a better solution is found and applied.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
15 years agoSupport for QAM modulation on ATSC
Jean-Baptiste Kempf [Mon, 17 Nov 2008 15:26:58 +0000 (16:26 +0100)]
Support for QAM modulation on ATSC

Default is not QAM_AUTO because ATSC is mainly using VSB_8 for non-cable operations.
Patch by Charles Hordis

15 years agoDon't distribute ./compile
Christophe Mutricy [Mon, 17 Nov 2008 00:18:48 +0000 (00:18 +0000)]
Don't distribute ./compile

15 years agoDistribute pixmaps/toolbars/*
Christophe Mutricy [Mon, 17 Nov 2008 00:17:05 +0000 (00:17 +0000)]
Distribute pixmaps/toolbars/*

15 years agortp/xiph.c has no strings and is not (yet) distributed
Christophe Mutricy [Mon, 17 Nov 2008 00:15:34 +0000 (00:15 +0000)]
rtp/xiph.c has no strings and is not (yet) distributed

15 years agoAllow disabling libsysfs support
Alexis Ballier [Sat, 15 Nov 2008 13:42:19 +0000 (14:42 +0100)]
Allow disabling libsysfs support

Add a configure switch to allow disabling libsysfs support instead of letting it check what is on the build host and enable it accordingly. The default behavior is unchanged.

Signed-off-by: Christophe Mutricy <xtophe@videolan.org>
15 years agoFixed snapshot while video is paused.
Laurent Aimar [Sat, 15 Nov 2008 21:53:26 +0000 (22:53 +0100)]
Fixed snapshot while video is paused.

15 years agocodec/dirac: Fix video format guessing
David Flynn [Sat, 15 Nov 2008 14:13:48 +0000 (14:13 +0000)]
codec/dirac: Fix video format guessing

Signed-off-by: David Flynn <davidf@rd.bbc.co.uk>
Signed-off-by: Laurent Aimar <fenrir@videolan.org>
15 years agoNEWS: Dirac is now available in TS too.
Jean-Baptiste Kempf [Sat, 15 Nov 2008 16:44:39 +0000 (17:44 +0100)]
NEWS: Dirac is now available in TS too.

15 years ago[Qt] Use the new Frame-By-Frame icon.
Jean-Baptiste Kempf [Fri, 14 Nov 2008 16:02:42 +0000 (17:02 +0100)]
[Qt] Use the new Frame-By-Frame icon.

15 years agodo not mind large time discontinuities in SPU streams these are to be expected, so...
Vincent Penquerc'h [Tue, 11 Nov 2008 20:56:06 +0000 (20:56 +0000)]
do not mind large time discontinuities in SPU streams these are to be expected, so do not reset timing

Signed-off-by: Laurent Aimar <fenrir@videolan.org>
15 years agoRemoved useless test.
Laurent Aimar [Sat, 15 Nov 2008 12:21:57 +0000 (13:21 +0100)]
Removed useless test.

15 years agomux/mpeg/pes: move PES_PRIVATE_STREAM_1 id handling into PESHeader()
David Flynn [Fri, 14 Nov 2008 21:46:40 +0000 (21:46 +0000)]
mux/mpeg/pes: move PES_PRIVATE_STREAM_1 id handling into PESHeader()

PES_EXTENDED_STREAM_ID is handled inside PESHeader()
Not handling PES_PRIVATE_STREAM_1 inside PESHeader() just moves complication
into the calling function and creates an extra argument.

Signed-off-by: David Flynn <davidf@rd.bbc.co.uk>
Signed-off-by: Laurent Aimar <fenrir@videolan.org>
15 years agomux/mpeg/ts: Add dirac muxing support
David Flynn [Fri, 14 Nov 2008 21:46:39 +0000 (21:46 +0000)]
mux/mpeg/ts: Add dirac muxing support

Signed-off-by: David Flynn <davidf@rd.bbc.co.uk>
Signed-off-by: Laurent Aimar <fenrir@videolan.org>
15 years agomux/mpeg/pes: Add support for stream_id_extension
David Flynn [Fri, 14 Nov 2008 21:46:38 +0000 (21:46 +0000)]
mux/mpeg/pes: Add support for stream_id_extension

ISO/IEC 13818-1:2000/Amd.2:2003 Adds support for signalling
a stream_id_extension.  This is used in mapping standards
for Dirac/VC-2 and VC-1.

Signed-off-by: David Flynn <davidf@rd.bbc.co.uk>
Signed-off-by: Laurent Aimar <fenrir@videolan.org>
15 years agoAdded 2 asserts.
Laurent Aimar [Sat, 15 Nov 2008 12:02:55 +0000 (13:02 +0100)]
Added 2 asserts.

15 years agomux/mpeg/pes: Add support for unbounded VIDEO_ES
David Flynn [Fri, 14 Nov 2008 21:46:37 +0000 (21:46 +0000)]
mux/mpeg/pes: Add support for unbounded VIDEO_ES

For some stream_id's in a transport stream, the PES packet may be
unbounded in length; add support for this.

Signed-off-by: David Flynn <davidf@rd.bbc.co.uk>
Signed-off-by: Laurent Aimar <fenrir@videolan.org>
15 years agomux/mpeg/pes: Add documentation stub
David Flynn [Fri, 14 Nov 2008 21:46:36 +0000 (21:46 +0000)]
mux/mpeg/pes: Add documentation stub

Signed-off-by: David Flynn <davidf@rd.bbc.co.uk>
Signed-off-by: Laurent Aimar <fenrir@videolan.org>
15 years agoRevert "Fix compilation warning when compiling without --enable-debug."
Rémi Duraffort [Fri, 14 Nov 2008 19:50:03 +0000 (20:50 +0100)]
Revert "Fix compilation warning when compiling without --enable-debug."
This commit breaks 'make check'.

This reverts commit c87ca8bb3ad9da57f15b311d4b688215e0a2f461.

15 years ago[Qt] New icons... Because you are worth it.
Jean-Baptiste Kempf [Fri, 14 Nov 2008 15:47:30 +0000 (16:47 +0100)]
[Qt] New icons... Because you are worth it.

15 years agoCmml: again, fix warning in a better way.
Rémi Duraffort [Thu, 13 Nov 2008 21:47:56 +0000 (22:47 +0100)]
Cmml: again, fix warning in a better way.

15 years agocmml: *Really* fix compilation warning.
Rémi Duraffort [Thu, 13 Nov 2008 21:37:05 +0000 (22:37 +0100)]
cmml: *Really* fix compilation warning.
(Don't use dummy code to hide these warnings)

15 years agoFix compilation warning when compiling without --enable-debug.
Rémi Duraffort [Thu, 13 Nov 2008 21:22:32 +0000 (22:22 +0100)]
Fix compilation warning when compiling without --enable-debug.

15 years agoSome NEWS.
Jean-Baptiste Kempf [Thu, 13 Nov 2008 17:40:41 +0000 (18:40 +0100)]
Some NEWS.

15 years agoFix toggling when Video is not embedded
COCQUEBERT Cédric [Thu, 13 Nov 2008 17:05:25 +0000 (18:05 +0100)]
Fix toggling when Video is not embedded

Slight modification by jb
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
15 years agoMaemo: Add the swscale_nokia770 library
Antoine Lejeune [Sat, 26 Jul 2008 00:58:15 +0000 (02:58 +0200)]
Maemo: Add the swscale_nokia770 library

Its interface is close to swscale and the library used part of the
swscale module code.
The library was developped by Siarhei Siamashka.

Signed-off-by: Rémi Denis-Courmont <rdenis@simphalempin.com>
15 years agoA new GUI for Maemo based on Hildon framework
Antoine Lejeune [Fri, 27 Jun 2008 16:55:15 +0000 (18:55 +0200)]
A new GUI for Maemo based on Hildon framework

Signed-off-by: Rémi Denis-Courmont <rdenis@simphalempin.com>
15 years agoMisspelling DCCP code
Vicente Jimenez Aguilar [Thu, 13 Nov 2008 14:20:04 +0000 (15:20 +0100)]
Misspelling DCCP code

Signed-off-by: Rémi Denis-Courmont <rdenis@simphalempin.com>
15 years agoCorrect typo in previous commits.
Jean-Baptiste Kempf [Thu, 13 Nov 2008 01:29:06 +0000 (02:29 +0100)]
Correct typo in previous commits.

15 years ago[Win32] package scripts updates.
Jean-Baptiste Kempf [Thu, 13 Nov 2008 01:21:46 +0000 (02:21 +0100)]
[Win32] package scripts updates.

15 years ago[Win32] add a MSys configure script.
Jean-Baptiste Kempf [Thu, 13 Nov 2008 00:07:30 +0000 (01:07 +0100)]
[Win32] add a MSys configure script.

15 years ago[Win32] Package: Warn if unix2dos fails, since this can happen a lot on MSys or CYGWIN
Jean-Baptiste Kempf [Thu, 13 Nov 2008 00:04:23 +0000 (01:04 +0100)]
[Win32] Package: Warn if unix2dos fails, since this can happen a lot on MSys or CYGWIN

15 years agoRTP has moved to access/
Christophe Mutricy [Wed, 12 Nov 2008 21:32:55 +0000 (21:32 +0000)]
RTP has moved to access/

15 years agoub.sh: prettified the comments a bit
Felix Paul Kühne [Wed, 12 Nov 2008 21:15:27 +0000 (22:15 +0100)]
ub.sh: prettified the comments a bit

15 years agoFixed output bitrate value + cosmetics.
Laurent Aimar [Wed, 12 Nov 2008 19:04:42 +0000 (20:04 +0100)]
Fixed output bitrate value + cosmetics.

15 years agocodec/dirac: Rewrite libdirac(-research) encoding support
David Flynn [Wed, 12 Nov 2008 09:21:25 +0000 (09:21 +0000)]
codec/dirac: Rewrite libdirac(-research) encoding support

libdirac is currently a higher quality (albeit much slower) encoder than
libschroedinger.  The intention is to port its algorithim to schro and
depricate the codebase.

A previous patch removes libdirac decoding support in preference
to the schroedinger module which is designed to be much faster.

This patch corrects previous attempts at doing an encoder module. It
takes into account:
 - input PTS
 - correctly forming output pts&dts (progressive and field coding modes)
 - gathering dirac data units into encapsulation units
 - encoder options
 - simplified encoder options (block overlap)
 - choosing of suitable parameters from input frame parameters
 - OggDirac compliant stashing of headers in p_extra

Signed-off-by: David Flynn <davidf@rd.bbc.co.uk>
Signed-off-by: Laurent Aimar <fenrir@videolan.org>
15 years agoFix a cursor selection bug in the Messages logs (see #2163)
Ludovic Fauvet [Tue, 11 Nov 2008 10:37:34 +0000 (11:37 +0100)]
Fix a cursor selection bug in the Messages logs (see #2163)

Also introduce a smart selection where the selection is restored after
text is inserted.

Signed-off-by: Rémi Denis-Courmont <rdenis@simphalempin.com>
15 years agohttpd: correctly reads from ufd[]...
Paul Corke [Tue, 11 Nov 2008 10:05:45 +0000 (10:05 +0000)]
httpd:  correctly reads from ufd[]...

...in the case where there are multiple clients, not all of which are
waiting to be serviced.

Signed-off-by: Rémi Denis-Courmont <rdenis@simphalempin.com>
15 years agoAdd support for bbc.co.uk iPLayer URLs (LUA Script)
Dominique Leuenberger [Mon, 10 Nov 2008 21:48:53 +0000 (22:48 +0100)]
Add support for bbc.co.uk iPLayer URLs (LUA Script)

Radio only for the moment

Signed-off-by: Christophe Mutricy <xtophe@videolan.org>
15 years agoi18: Translate one more string
Christophe Mutricy [Tue, 11 Nov 2008 20:07:48 +0000 (20:07 +0000)]
i18: Translate one more string

15 years agoSync NEWS
Christophe Mutricy [Sat, 8 Nov 2008 01:08:26 +0000 (01:08 +0000)]
Sync NEWS

15 years agoRevert "Increased VOUT_IDLE_SLEEP as a proper wait/lock is used."
Laurent Aimar [Tue, 11 Nov 2008 20:49:05 +0000 (21:49 +0100)]
Revert "Increased VOUT_IDLE_SLEEP as a proper wait/lock is used."

This reverts commit 4332c070f6eba9288f349ac378392b219a3d7629.

A higher value creates problem with OSD. This will need more
thinking.

15 years agoRemoved es_out_Lock/Unlock.
Laurent Aimar [Tue, 11 Nov 2008 20:16:04 +0000 (21:16 +0100)]
Removed es_out_Lock/Unlock.

 Demuxer running their own thread sending data to es_out will have to
properly handle es_out (reset).

15 years agoRemoved stream immediate.
Laurent Aimar [Tue, 11 Nov 2008 19:32:20 +0000 (20:32 +0100)]
Removed stream immediate.

Normal stream layer should be about the same latency now.

15 years agoRemoved useless buffering at stream level.
Laurent Aimar [Tue, 11 Nov 2008 19:26:05 +0000 (20:26 +0100)]
Removed useless buffering at stream level.

It removed the need of access_t.info.b_prebuffered
It reduces latency (removing the need for stream immediate)
It may increase a little the CPU usage but only for demuxer that
already do too much small stream reads.

15 years agoIncreased VOUT_IDLE_SLEEP as a proper wait/lock is used.
Laurent Aimar [Tue, 11 Nov 2008 18:40:07 +0000 (19:40 +0100)]
Increased VOUT_IDLE_SLEEP as a proper wait/lock is used.

 It is still needed as filter change need to be checked and do not use
this wait/lock (they are about picture fifo).

15 years agoFix package-macosx-plugin target on MacOS X 10.5 (Leopard).
Felix Paul Kühne [Tue, 11 Nov 2008 18:47:05 +0000 (19:47 +0100)]
Fix package-macosx-plugin target on MacOS X 10.5 (Leopard).

forward-port [578af5df020a05e7deb7f4b0fdf5b6c5d402814e]

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
15 years agoModify caching-values in simple-preferences, so new base values are
Ilkka Ollakka [Tue, 11 Nov 2008 15:09:51 +0000 (17:09 +0200)]
Modify caching-values in simple-preferences, so new base values are
100 200 300 750 2500

For http/rtsp caching is doubled, for mms its 10x that (maybe too much on that one).

15 years agoEnable ffmpeg aac decoder, seems to work currently.
Ilkka Ollakka [Tue, 11 Nov 2008 11:06:41 +0000 (13:06 +0200)]
Enable ffmpeg aac decoder, seems to work currently.

15 years agocodec/dirac: remove decoder functionality
David Flynn [Mon, 10 Nov 2008 19:27:33 +0000 (19:27 +0000)]
codec/dirac: remove decoder functionality

The schroedinger project and vlc module are much faster dirac decoders;
that should be used in preference to libdirac[-research]

Signed-off-by: David Flynn <davidf@rd.bbc.co.uk>
Signed-off-by: Laurent Aimar <fenrir@videolan.org>
15 years agoConstify es_out_Add es_format_t* argument.
Laurent Aimar [Mon, 10 Nov 2008 18:07:00 +0000 (19:07 +0100)]
Constify es_out_Add es_format_t* argument.

15 years agomux/ogg: Enable OggDirac support
David Flynn [Sun, 9 Nov 2008 15:36:17 +0000 (15:36 +0000)]
mux/ogg: Enable OggDirac support

 - OggDirac support using revised granule_position mapping:
     http://www.diracvideo.org/specification (20081109)
 - Uses p_extra for BOS page
 - Flushes Ogg page after each OggDirac packet

Signed-off-by: David Flynn <davidf@rd.bbc.co.uk>
Signed-off-by: Laurent Aimar <fenrir@videolan.org>