platform/upstream/gst-libav.git
15 years agobuild: Fix the dist - libswscale isn't an external on the 0.5 branch
Jan Schmidt [Sat, 6 Jun 2009 14:14:45 +0000 (15:14 +0100)]
build: Fix the dist - libswscale isn't an external on the 0.5 branch

The 0.5 ffmpeg branch includes libswscale directly, not as an external,
breaking the dist (and warning in autogen.sh) about not being able to
update its revision.

Add some code to not update the svn external if the
FFMPEG_EXTERNALS_REVISION variable is empty.

Also, in autogen.sh check that the current FFmpeg checkout is from the
right branch according to ffmpegrev, and check it out again if
it's not.

15 years ago0.10.7.2 pre-release
Jan Schmidt [Fri, 5 Jun 2009 21:12:24 +0000 (22:12 +0100)]
0.10.7.2 pre-release

15 years agoffmpegdec: don't do QoS on invalid timestamps
Wim Taymans [Fri, 5 Jun 2009 11:47:15 +0000 (13:47 +0200)]
ffmpegdec: don't do QoS on invalid timestamps

When we convert the timestamp to running_time, don't try to do QoS on invalid
times.

Fixes #580810

15 years agoffmpeg: make elements reusable after registry rescan
Jordi Mas [Fri, 5 Jun 2009 11:19:03 +0000 (13:19 +0200)]
ffmpeg: make elements reusable after registry rescan

If the same instance of the plugin is asked to be initialised more that once,
instances after the first one do not register the elements properly and the
elements become not usable.

For example, if you call gst_update_registry (), is not possible to create
elements after the call since the plugin is asked to be initialised again and
does not register the elements.

Fixes #584291

15 years agocheck: add registry rescan test
Wim Taymans [Fri, 5 Jun 2009 11:17:09 +0000 (13:17 +0200)]
check: add registry rescan test

15 years agoffmpeg: properly integrate timestamp handling
Wim Taymans [Fri, 5 Jun 2009 10:32:25 +0000 (12:32 +0200)]
ffmpeg: properly integrate timestamp handling

The patch from Bug #580796 hacked around existing infrastructure to handle
timestamps as DTS (as in all AVI files) causing the logic to be disabled.

Properly hook the timestamp handling into the existing infrastructure to handle
these cases too, partially reverting a26b94d92c2e9e9f6dac0cdb5fb44ba06ee089c8
and moving some stuff around.

Refixes #580796.

15 years agoffmpeg: change library inclusion order
LRN [Mon, 1 Jun 2009 15:24:53 +0000 (17:24 +0200)]
ffmpeg: change library inclusion order

Fixes #584399

15 years agoSwitch back to the ffmpeg 0.5 branch to allow us to release in the next weeks
Sebastian Dröge [Fri, 29 May 2009 11:51:31 +0000 (13:51 +0200)]
Switch back to the ffmpeg 0.5 branch to allow us to release in the next weeks

15 years agoAutomatic update of common submodule
Jan Schmidt [Tue, 26 May 2009 16:20:14 +0000 (17:20 +0100)]
Automatic update of common submodule

From 888e0a2 to c572721

15 years agoenc: use standard multipass-cache-file
Wim Taymans [Mon, 25 May 2009 10:36:06 +0000 (12:36 +0200)]
enc: use standard multipass-cache-file

Deprecate the old statsfile property and add a the new standard
mulitpass-cache-file property to match other encoders.
Fixes #583627

15 years agoAutomatic update of common submodule
Jan Schmidt [Fri, 22 May 2009 09:21:02 +0000 (10:21 +0100)]
Automatic update of common submodule

From 6ab11d1 to 888e0a2

15 years agoffmpeg: Don't add sink pad template to the muxers when not needed.
Jan Schmidt [Fri, 15 May 2009 14:48:35 +0000 (15:48 +0100)]
ffmpeg: Don't add sink pad template to the muxers when not needed.

If the set of caps for either audio or video is completely empty, skip
adding that pad template to the class. Some muxers only support audio-only
or video-only and otherwise end up with EMPTY caps in the pad template.

15 years agoffenc: avoid malloc more for audio encoders
Wim Taymans [Wed, 13 May 2009 21:18:50 +0000 (23:18 +0200)]
ffenc: avoid malloc more for audio encoders

Use _adapter_peek() to retrieve data so that we can reuse previously
allocated memory.

15 years agogstffmpegdec: demote mpeg2 video decoding back to MARGINAL. Fixes #574461
Edward Hervey [Wed, 13 May 2009 17:35:32 +0000 (19:35 +0200)]
gstffmpegdec: demote mpeg2 video decoding back to MARGINAL. Fixes #574461

15 years agoAdd mapping for VQF caps
Sebastian Dröge [Wed, 13 May 2009 14:21:36 +0000 (16:21 +0200)]
Add mapping for VQF caps

15 years agoUpdate ffmpeg revision to latest trunk
Sebastian Dröge [Wed, 13 May 2009 14:19:21 +0000 (16:19 +0200)]
Update ffmpeg revision to latest trunk

15 years agogstffmpegdec: Don't forget to copy over the reordered_opaque in our buffers.
Edward Hervey [Wed, 13 May 2009 11:47:58 +0000 (13:47 +0200)]
gstffmpegdec: Don't forget to copy over the reordered_opaque in our buffers.

This is to be on-par with the default get_buffer() implementation (which is
detailed in libavcodec/utils.c).

15 years agogstffmpegdec: Handle out-of-order frames. Fixes #580796
Vanista [Wed, 13 May 2009 10:37:42 +0000 (12:37 +0200)]
gstffmpegdec: Handle out-of-order frames. Fixes #580796

15 years agoffenc: make the output buffer big enough
Wim Taymans [Wed, 13 May 2009 09:21:13 +0000 (11:21 +0200)]
ffenc: make the output buffer big enough

The ffmpeg docs say that the output buffer should at least be
FF_MIN_BUFFER_SIZE (which is overly large, but anyways).

15 years agoffmpeg: rewrite audio encoders.
Wim Taymans [Tue, 12 May 2009 23:04:30 +0000 (01:04 +0200)]
ffmpeg: rewrite audio encoders.

Rewrite the audio encoders to use the right API functions of ffmpeg. Also get
rid of the handrolled cache and use adapter instead for formats that require
fixed frame_size as input.

15 years agocodecmap: revert bogus commit.
Wim Taymans [Tue, 12 May 2009 20:20:49 +0000 (22:20 +0200)]
codecmap: revert bogus commit.

We don't need to set a default frame_size, ffmpeg has set this value to 0 to
inform us that there is a fixed relation between the amount of input samples
and output samples. Now we only need to implement handling that fact.

15 years agoffmpegcfg: Expose two more CODEC_FLAG.
Edward Hervey [Tue, 12 May 2009 16:13:16 +0000 (18:13 +0200)]
ffmpegcfg: Expose two more CODEC_FLAG.

15 years agogstffmpegdec: No, really, we don't want the VDPAU decoders.
Edward Hervey [Tue, 12 May 2009 13:30:10 +0000 (15:30 +0200)]
gstffmpegdec: No, really, we don't want the VDPAU decoders.

They've changed the names, keeping the old ones til we switch upstream
revision.

15 years agoffdec: Update rank of ffdec_mpeg2video to SECONDARY to make it the default
Sebastian Dröge [Tue, 12 May 2009 09:20:08 +0000 (11:20 +0200)]
ffdec: Update rank of ffdec_mpeg2video to SECONDARY to make it the default

ffdec_mpeg2video is much faster, fixes bug #574461.

15 years agogstffmpegdec: Implement interlaced support.
Edward Hervey [Tue, 12 May 2009 09:16:43 +0000 (11:16 +0200)]
gstffmpegdec: Implement interlaced support.

ffmpeg only tells us on a per-decoded-buffer basis if the stream is
interlaced or not. When we see a change, we force negotiation.

We can't detect that in our get_buffer() (when doing downstream allocation),
because at that point the interlaced flags aren't set on the outgoing
buffer.

15 years agoRun libtoolize before aclocal
Marc-Andre Lureau [Sun, 10 May 2009 09:17:16 +0000 (11:17 +0200)]
Run libtoolize before aclocal

This unbreaks the build in some cases. Fixes bug #582021

15 years agowin32: Fix non-portable printf format.
Edward Hervey [Sat, 9 May 2009 08:57:55 +0000 (10:57 +0200)]
win32: Fix non-portable printf format.

15 years agoUse av_{i,o}format_next instead of the private next field
David Hoyt [Thu, 7 May 2009 10:57:10 +0000 (12:57 +0200)]
Use av_{i,o}format_next instead of the private next field

This fixes compilation with MSVC where the initializer variables
are aliased to different names. Fixes bug #576126.

15 years agoAdd videoscaler to spec file
Christian Schaller [Tue, 5 May 2009 16:32:07 +0000 (17:32 +0100)]
Add videoscaler to spec file

15 years agoremoving make flags in spec file to make things flow easy with
Christian Schaller [Tue, 5 May 2009 16:27:27 +0000 (17:27 +0100)]
removing make flags in spec file to make things flow easy with
GCC 4.4.0

15 years agoffenc: Implement preset interface
Sebastian Dröge [Mon, 4 May 2009 11:00:49 +0000 (13:00 +0200)]
ffenc: Implement preset interface

15 years agoffenc: Send error upstream when gst_pad_push return is different from GST_FLOW_OK
Thiago Santos [Thu, 23 Apr 2009 17:35:10 +0000 (14:35 -0300)]
ffenc: Send error upstream when gst_pad_push return is different from GST_FLOW_OK

15 years agoAutomatic update of common submodule
Jan Schmidt [Tue, 21 Apr 2009 21:13:51 +0000 (22:13 +0100)]
Automatic update of common submodule

From b3941ea to 6ab11d1

15 years agogstffmpegenc: Don't change properties once opened. Fixes #570815
Edward Hervey [Tue, 21 Apr 2009 16:38:03 +0000 (18:38 +0200)]
gstffmpegenc: Don't change properties once opened. Fixes #570815

Based on a patch by Tristan Matthews <le businessman at gmail dot com>

15 years agogstffmpegcfg: Add H263 to the list of mpeg property-compatible codecs.
Janin Kolenc [Tue, 21 Apr 2009 16:34:22 +0000 (18:34 +0200)]
gstffmpegcfg: Add H263 to the list of mpeg property-compatible codecs.

15 years agoMake sure we provide ffmpeg with 128bit-aligned data.
Edward Hervey [Sun, 8 Mar 2009 10:31:35 +0000 (11:31 +0100)]
Make sure we provide ffmpeg with 128bit-aligned data.

Add a new function new_aligned_buffer() which creates a GstBuffer of
the requested size/caps, with the memory being allocated/freed by ffmpeg's
av_malloc/av_free which guarantees properly aligned memory.
Added a can_allocate_aligned internal property which we use to figure out
whether downstream can provide us with 128bit aligned buffers.

15 years agoReverting Jan's fix-the-buildbot commit
Edward Hervey [Sun, 19 Apr 2009 12:07:58 +0000 (14:07 +0200)]
Reverting Jan's fix-the-buildbot commit

This reverts commit 5465d40b8dcb7650c024bf8c6b6329d26df5a610.

15 years agobuild: Deliberately break the build, temporarily.
Jan Schmidt [Sun, 19 Apr 2009 01:39:30 +0000 (02:39 +0100)]
build: Deliberately break the build, temporarily.

This is to force the buildbots to run autogen.sh one time. I can't
figure out a more elegant way.

15 years agobuild: Fix maintainer-mode and embedded FFmpeg configuration parameters
Jan Schmidt [Sun, 19 Apr 2009 01:34:50 +0000 (02:34 +0100)]
build: Fix maintainer-mode and embedded FFmpeg configuration parameters

Don't use AC_CONFIG_SUBDIRS to call the FFmpeg configure script, as it
complains about all the unknown parameters autoconf gives it, and fiddling
with ac_configure_args makes maintainer-mode call our real configure script
with a bunch of bogus arguments.

Instead, use AC_CONFIG_COMMANDS to call the FFmpeg configure script
ourselves.

Remove autogen.sh code that modifies the FFmpeg configure script, as it's
not needed now that we only pass it arguments it understands, and move
the detection of flags like --disable-ffmpeg into the configure script,
otherwise they never get passed to FFmpeg if we call configure ourselves,
such as from a tarball.

15 years agogstffmpegdec: Really fix the arguments this time.
Edward Hervey [Sat, 18 Apr 2009 07:08:39 +0000 (09:08 +0200)]
gstffmpegdec: Really fix the arguments this time.

I blame compilers who can't figure out there's the wrong number of arguments
for the given print format :)

15 years agogstffmpegdec: Fix build on macosx.
Edward Hervey [Sat, 18 Apr 2009 06:50:12 +0000 (08:50 +0200)]
gstffmpegdec: Fix build on macosx.

The arguments were in the wrong order (and therefore the types were wrong).

15 years agoffmpegdec: resize padding buffer when it's small
Wim Taymans [Fri, 17 Apr 2009 17:07:26 +0000 (19:07 +0200)]
ffmpegdec: resize padding buffer when it's small

Only resize the padding buffer when the size is too small, when it's just right,
we don't need to call realloc.

15 years agoffmpeg: add default frame_size for g726
Wim Taymans [Fri, 17 Apr 2009 14:25:12 +0000 (16:25 +0200)]
ffmpeg: add default frame_size for g726

Without a frame_size configured in the context, the ffmpeg encoders do nothing.
Since the G726 does not configure a size itself, we set ourselves a frame_size
that corresponds to 20ms of audio, which is a reasonable default.

15 years agocheck: Add a simple test that the FFmpeg plugin loads
Jan Schmidt [Fri, 17 Apr 2009 12:46:39 +0000 (13:46 +0100)]
check: Add a simple test that the FFmpeg plugin loads

Check that the ffmpeg plugin actually exists after building.

15 years agogstffmpegutils: Add the files :)
Edward Hervey [Thu, 16 Apr 2009 09:00:46 +0000 (11:00 +0200)]
gstffmpegutils: Add the files :)

15 years agoMove all non-codecmap-related methods to a new file.
Edward Hervey [Wed, 15 Apr 2009 20:33:16 +0000 (22:33 +0200)]
Move all non-codecmap-related methods to a new file.

We were starting to get too much unrelated code in there. This makes it
a bit easier to maintain.

15 years agogstffmpeg.c: Fix the description of the plugin.
Edward Hervey [Wed, 15 Apr 2009 20:14:09 +0000 (22:14 +0200)]
gstffmpeg.c: Fix the description of the plugin.

15 years agogstffmpeg.c: Point to the new ffmpeg website (ffmpeg.org).
Edward Hervey [Wed, 15 Apr 2009 20:11:33 +0000 (22:11 +0200)]
gstffmpeg.c: Point to the new ffmpeg website (ffmpeg.org).

15 years agoThe proper spelling is 'FFmpeg'.
Edward Hervey [Wed, 15 Apr 2009 20:11:10 +0000 (22:11 +0200)]
The proper spelling is 'FFmpeg'.

15 years agogstffmpegmux: Use the AVFormat long_name in our descriptions.
Edward Hervey [Wed, 15 Apr 2009 20:04:02 +0000 (22:04 +0200)]
gstffmpegmux: Use the AVFormat long_name in our descriptions.

This is the same behaviour we use in the demuxers.

15 years agoDisable more fake codecs (raw audio).
Edward Hervey [Wed, 15 Apr 2009 19:56:00 +0000 (21:56 +0200)]
Disable more fake codecs (raw audio).

15 years agoffdec: copy input offsets to output buffers
LRN [Thu, 9 Apr 2009 22:19:50 +0000 (00:19 +0200)]
ffdec: copy input offsets to output buffers

Copy the incomming offsets to the outgoing buffers.
Fixes 578278.

15 years agoAutomatic update of common submodule
Felipe Contreras [Sat, 4 Apr 2009 18:19:34 +0000 (21:19 +0300)]
Automatic update of common submodule

From d0ea89e to b3941ea

15 years agoAutomatic update of common submodule
Edward Hervey [Sat, 4 Apr 2009 12:54:55 +0000 (14:54 +0200)]
Automatic update of common submodule

From f8b3d91 to d0ea89e

15 years agoffmpeg: Fix handling of --with-ffmpeg-extra-configure
Branko Čibej [Sat, 4 Apr 2009 06:53:54 +0000 (08:53 +0200)]
ffmpeg: Fix handling of --with-ffmpeg-extra-configure

Fixes bug #577879.

15 years agoffenc: Add support for I-frame request.
Janin Kolenc [Wed, 25 Mar 2009 11:51:55 +0000 (12:51 +0100)]
ffenc: Add support for I-frame request.

Add request for I-frame request using GstForceKeyUnit event.
Fixes #575709.

15 years agoffmux: Actually set caps on the srcpad instead of working with NULL caps
Sebastian Dröge [Sun, 15 Mar 2009 09:19:53 +0000 (10:19 +0100)]
ffmux: Actually set caps on the srcpad instead of working with NULL caps

15 years agoback to development -> 0.10.7.1
Jan Schmidt [Sun, 22 Mar 2009 20:16:24 +0000 (20:16 +0000)]
back to development -> 0.10.7.1

15 years agoRelease 0.10.7 RELEASE-0_10_7
Jan Schmidt [Sat, 21 Mar 2009 01:02:05 +0000 (01:02 +0000)]
Release 0.10.7

15 years ago0.10.6.4 pre-release
Jan Schmidt [Wed, 18 Mar 2009 00:03:27 +0000 (00:03 +0000)]
0.10.6.4 pre-release

15 years agoTake into account ticks_per_frame for framerate calculation. Fixes #575759
Edward Hervey [Tue, 17 Mar 2009 22:44:43 +0000 (23:44 +0100)]
Take into account ticks_per_frame for framerate calculation. Fixes #575759

15 years agoRe-enable amr muxer. It's a muxer after all. Fixes #575664
Edward Hervey [Tue, 17 Mar 2009 10:51:28 +0000 (11:51 +0100)]
Re-enable amr muxer. It's a muxer after all. Fixes #575664

15 years ago0.10.6.3 pre-release
Jan Schmidt [Fri, 13 Mar 2009 23:52:01 +0000 (23:52 +0000)]
0.10.6.3 pre-release

15 years agogstffmpegdec: Disable vdpau decoders. Fixes #573400
Edward Hervey [Wed, 11 Mar 2009 12:25:40 +0000 (13:25 +0100)]
gstffmpegdec: Disable vdpau decoders. Fixes #573400

15 years agopixfmt: Stop using PIX_FMT that were marked as deprecated 3 years ago.
Edward Hervey [Wed, 11 Mar 2009 11:56:29 +0000 (12:56 +0100)]
pixfmt: Stop using PIX_FMT that were marked as deprecated 3 years ago.

It still worked... until the 0.5 ffmpeg release, which made those defines unused.

See the bottom of libavutil/pixfmt.h for more details.

15 years agoffmpegrev: bump up upstream revision to the *exact* release revision.
Edward Hervey [Wed, 11 Mar 2009 09:16:46 +0000 (10:16 +0100)]
ffmpegrev: bump up upstream revision to the *exact* release revision.

This is only a one-commit svn-props change.. but we might as well keep
it accurate.

15 years agocodecmapping: Fix caps for ATRAC3. Fixes #574663
Edward Hervey [Tue, 10 Mar 2009 20:14:21 +0000 (21:14 +0100)]
codecmapping: Fix caps for ATRAC3. Fixes #574663

15 years agoDisable exposing decoder/encoder using external library. Fixes #574746
Edward Hervey [Tue, 10 Mar 2009 20:11:43 +0000 (21:11 +0100)]
Disable exposing decoder/encoder using external library. Fixes #574746

15 years agoblacklist bogus demuxer/muxer/typefind. Fixes #567336 and #574814
Edward Hervey [Tue, 10 Mar 2009 20:05:52 +0000 (21:05 +0100)]
blacklist bogus demuxer/muxer/typefind. Fixes #567336 and #574814

15 years ago0.10.6.2 pre-release
Jan Schmidt [Tue, 10 Mar 2009 00:22:10 +0000 (00:22 +0000)]
0.10.6.2 pre-release

15 years agoAutomatic update of common submodule
Jan Schmidt [Mon, 9 Mar 2009 23:13:40 +0000 (23:13 +0000)]
Automatic update of common submodule

From 7032163 to f8b3d91

15 years agogstffmpegdec: Use 64bit scaling function to avoid overflows detected in some situations.
Edward Hervey [Mon, 9 Mar 2009 17:17:30 +0000 (18:17 +0100)]
gstffmpegdec: Use 64bit scaling function to avoid overflows detected in some situations.

15 years agodemux: If the demuxer isn't initialized yet, forward serialized events without waiting.
Edward Hervey [Mon, 9 Mar 2009 14:09:10 +0000 (15:09 +0100)]
demux: If the demuxer isn't initialized yet, forward serialized events without waiting.

We do this, because the demuxer is initialized in the loop function. If it's not
initialized yet, that means the loop hasn't been entered... and therefore the
PIPE GCond will never be signalled.

15 years agodemuxers: Blacklist push-mode for avformat demuxers which aren't reliable in push...
Edward Hervey [Mon, 9 Mar 2009 12:46:06 +0000 (13:46 +0100)]
demuxers: Blacklist push-mode for avformat demuxers which aren't reliable in push-mode.

Currently, only one is blacklisted : ffdemux_ape. This has been confirmed by
ffmpeg developers.

15 years agodemuxers: Add more debugging
Edward Hervey [Mon, 9 Mar 2009 12:45:22 +0000 (13:45 +0100)]
demuxers: Add more debugging

15 years agoffmpegrev: and update once more for last-minute fixes to upstream release branch
Edward Hervey [Fri, 6 Mar 2009 18:02:14 +0000 (19:02 +0100)]
ffmpegrev: and update once more for last-minute fixes to upstream release branch

15 years agogstffmpegcodecmap: Add proper caps for Fraps video codec
Edward Hervey [Mon, 9 Mar 2009 09:05:04 +0000 (10:05 +0100)]
gstffmpegcodecmap: Add proper caps for Fraps video codec

15 years agoAutomatic update of common submodule
Sebastian Dröge [Sun, 8 Mar 2009 11:06:11 +0000 (12:06 +0100)]
Automatic update of common submodule

From ffa738d to 7032163

15 years agoAutomatic update of common submodule
Sebastian Dröge [Sun, 8 Mar 2009 10:21:48 +0000 (11:21 +0100)]
Automatic update of common submodule

From 3f13e4e to ffa738d

15 years agoAutomatic update of common submodule
Sebastian Dröge [Sat, 7 Mar 2009 10:47:21 +0000 (11:47 +0100)]
Automatic update of common submodule

From 3c7456b to 3f13e4e

15 years agoAutomatic update of common submodule
Sebastian Dröge [Sat, 7 Mar 2009 09:47:28 +0000 (10:47 +0100)]
Automatic update of common submodule

From 57c83f2 to 3c7456b

15 years agoconfigure: require a released version of gstreamer, to avoid confusion
Tim-Philipp Müller [Fri, 6 Mar 2009 17:49:24 +0000 (17:49 +0000)]
configure: require a released version of gstreamer, to avoid confusion

15 years agoffmpegdec: Make sure we provide 16 byte aligned data to ffmpeg. Fixes #572863
Edward Hervey [Fri, 6 Mar 2009 16:37:51 +0000 (17:37 +0100)]
ffmpegdec: Make sure we provide 16 byte aligned data to ffmpeg. Fixes #572863

We simply allocate the memory using ffmpeg's av_malloc which provides us
with properly memalign'ed data.
This avoids write-outside-of-bounds when sse/altivec code is being used.

15 years agoffaudioresample: Add padding to output buffer. Fixes #573649
Edward Hervey [Fri, 6 Mar 2009 11:47:12 +0000 (12:47 +0100)]
ffaudioresample: Add padding to output buffer. Fixes #573649

The internal resampling functions seem to require a slightly bigger buffer
for output than what we require. Therefore we give it an extra 64bytes (although
16 should have been enough).

15 years agoffmpegdec: post an error message on the bus when decoding fails
Tim-Philipp Müller [Fri, 6 Mar 2009 11:01:55 +0000 (11:01 +0000)]
ffmpegdec: post an error message on the bus when decoding fails

We should post a STREAM DECODE error message on the bus when we return
GST_FLOW_ERROR, otherwise the user ends up seeing an ugly internal flow
error message, which isn't very nice.

15 years agogstffmpegdec: Set the rank of the AAC decoder to NONE.
Edward Hervey [Thu, 5 Mar 2009 11:09:32 +0000 (12:09 +0100)]
gstffmpegdec: Set the rank of the AAC decoder to NONE.

It will stay this way until the ffmpeg aac decoder can report before decoding
whether it can handle a given stream or not.

15 years agoMake bz2 requirement optional. Fixes #564867
Damien Lespiau [Thu, 5 Mar 2009 08:10:37 +0000 (09:10 +0100)]
Make bz2 requirement optional. Fixes #564867

15 years agogstffmpegmux: Expose the 'preload' and 'maxdelay' properties, add dvd mux mapping.
Jordi Mas [Thu, 5 Mar 2009 07:52:11 +0000 (08:52 +0100)]
gstffmpegmux: Expose the 'preload' and 'maxdelay' properties, add dvd mux mapping.

Fixes #570975

15 years agocodecmap. The VC1 decoder can also handle the Advanced Profile.
Edward Hervey [Thu, 5 Mar 2009 06:48:24 +0000 (07:48 +0100)]
codecmap. The VC1 decoder can also handle the Advanced Profile.

Fixes #565269

15 years agoffdec: fix build
Tim-Philipp Müller [Wed, 4 Mar 2009 20:58:08 +0000 (20:58 +0000)]
ffdec: fix build

15 years agogstffmpegdec: Abort on first failure by AAC decoder. Fixes #566250.
Edward Hervey [Wed, 4 Mar 2009 20:10:22 +0000 (21:10 +0100)]
gstffmpegdec: Abort on first failure by AAC decoder. Fixes #566250.

The problem is that the ffmpeg aac decoder fails... but still accepts
the following buffers as if nothing happened. But because some things
were not properly set in the internal code, all hell breaks loose.

15 years agogstffmpegdec: Bring the real decoders up to GST_RANK_PRIMARY.
Edward Hervey [Wed, 4 Mar 2009 19:04:25 +0000 (20:04 +0100)]
gstffmpegdec: Bring the real decoders up to GST_RANK_PRIMARY.

They have proven by now that they're more reliable than the
-bad real wrapper plugins.

15 years agoffmpeg: Don't register the MXF typefinder, we have our own in -base
Sebastian Dröge [Wed, 4 Mar 2009 11:25:34 +0000 (12:25 +0100)]
ffmpeg: Don't register the MXF typefinder, we have our own in -base

15 years agoffmpeg: mxf_d10 is application/mxf too, it only specifies the used mapping
Sebastian Dröge [Wed, 4 Mar 2009 11:24:47 +0000 (12:24 +0100)]
ffmpeg: mxf_d10 is application/mxf too, it only specifies the used mapping

15 years agoffmpegrev: Update to actual ffmpeg 0.5 release branch
Edward Hervey [Tue, 3 Mar 2009 16:23:25 +0000 (17:23 +0100)]
ffmpegrev: Update to actual ffmpeg 0.5 release branch

Normally this should be the last commit before they release 0.5.
We should use this for pre-releases in order to help them squash down bugs.

15 years agoffmpegrev: Switch to 0.5 ffmpeg release branch
Edward Hervey [Mon, 2 Mar 2009 11:07:32 +0000 (12:07 +0100)]
ffmpegrev: Switch to 0.5 ffmpeg release branch

15 years agoffmpeg: Bump up to current upstream HEAD of ffmpeg and swscale
Edward Hervey [Fri, 27 Feb 2009 08:41:24 +0000 (09:41 +0100)]
ffmpeg: Bump up to current upstream HEAD of ffmpeg and swscale

15 years agoffmpegmux: Use information from AVOutputFormat to expose more muxers.
Edward Hervey [Fri, 27 Feb 2009 08:40:03 +0000 (09:40 +0100)]
ffmpegmux: Use information from AVOutputFormat to expose more muxers.

AVOutputFormat does *NOT* contain the full list of codecs a muxer can handle,
but does contain the recommended audio and video codecs. Therefore we use that
information to expose more muxers, until AVOutputFormat contains a list of
*ALL* compatible codecs.

15 years agobuild: Update shave init statement for changes in common. Bump common.
Jan Schmidt [Wed, 25 Feb 2009 15:08:38 +0000 (15:08 +0000)]
build: Update shave init statement for changes in common. Bump common.

15 years agoAutomatic update of common submodule
Jan Schmidt [Wed, 25 Feb 2009 11:32:50 +0000 (11:32 +0000)]
Automatic update of common submodule

From 9cf8c9b to a6ce5c6