summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-05-13ffmpegenc: use new adapter timestamp handlingworkWim Taymans2-29/+23
2009-05-13Add mapping for VQF capsSebastian Dröge1-0/+2
2009-05-13Update ffmpeg revision to latest trunkSebastian Dröge1-3/+3
2009-05-13gstffmpegdec: Don't forget to copy over the reordered_opaque in our buffers.Edward Hervey1-0/+1
This is to be on-par with the default get_buffer() implementation (which is detailed in libavcodec/utils.c).
2009-05-13gstffmpegdec: Handle out-of-order frames. Fixes #580796Vanista1-11/+136
2009-05-13ffenc: make the output buffer big enoughWim Taymans1-1/+1
The ffmpeg docs say that the output buffer should at least be FF_MIN_BUFFER_SIZE (which is overly large, but anyways).
2009-05-13ffmpeg: rewrite audio encoders.Wim Taymans2-80/+163
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.
2009-05-12codecmap: revert bogus commit.Wim Taymans1-3/+0
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.
2009-05-12ffmpegcfg: Expose two more CODEC_FLAG.Edward Hervey1-0/+3
2009-05-12gstffmpegdec: No, really, we don't want the VDPAU decoders.Edward Hervey1-0/+2
They've changed the names, keeping the old ones til we switch upstream revision.
2009-05-12ffdec: Update rank of ffdec_mpeg2video to SECONDARY to make it the defaultSebastian Dröge1-0/+6
ffdec_mpeg2video is much faster, fixes bug #574461.
2009-05-12gstffmpegdec: Implement interlaced support.Edward Hervey1-11/+35
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.
2009-05-10Run libtoolize before aclocalMarc-Andre Lureau1-1/+1
This unbreaks the build in some cases. Fixes bug #582021
2009-05-09win32: Fix non-portable printf format.Edward Hervey2-7/+11
2009-05-07Use av_{i,o}format_next instead of the private next fieldDavid Hoyt2-4/+4
This fixes compilation with MSVC where the initializer variables are aliased to different names. Fixes bug #576126.
2009-05-05Add videoscaler to spec fileChristian Schaller1-0/+1
2009-05-05removing make flags in spec file to make things flow easy withChristian Schaller1-1/+1
GCC 4.4.0
2009-05-04ffenc: Implement preset interfaceSebastian Dröge1-0/+9
2009-04-23ffenc: Send error upstream when gst_pad_push return is different from ↵Thiago Santos1-0/+5
GST_FLOW_OK
2009-04-21Automatic update of common submoduleJan Schmidt1-0/+0
From b3941ea to 6ab11d1
2009-04-21gstffmpegenc: Don't change properties once opened. Fixes #570815Edward Hervey1-0/+6
Based on a patch by Tristan Matthews <le businessman at gmail dot com>
2009-04-21gstffmpegcfg: Add H263 to the list of mpeg property-compatible codecs.Janin Kolenc1-0/+1
2009-04-21Make sure we provide ffmpeg with 128bit-aligned data.Edward Hervey4-10/+48
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.
2009-04-19Reverting Jan's fix-the-buildbot commitEdward Hervey1-1/+0
This reverts commit 5465d40b8dcb7650c024bf8c6b6329d26df5a610.
2009-04-19build: Deliberately break the build, temporarily.Jan Schmidt1-0/+1
This is to force the buildbots to run autogen.sh one time. I can't figure out a more elegant way.
2009-04-19build: Fix maintainer-mode and embedded FFmpeg configuration parametersJan Schmidt2-26/+40
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.
2009-04-18gstffmpegdec: Really fix the arguments this time.Edward Hervey1-2/+1
I blame compilers who can't figure out there's the wrong number of arguments for the given print format :)
2009-04-18gstffmpegdec: Fix build on macosx.Edward Hervey1-2/+3
The arguments were in the wrong order (and therefore the types were wrong).
2009-04-17ffmpegdec: resize padding buffer when it's smallWim Taymans1-1/+1
Only resize the padding buffer when the size is too small, when it's just right, we don't need to call realloc.
2009-04-17ffmpeg: add default frame_size for g726Wim Taymans1-0/+5
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.
2009-04-17check: Add a simple test that the FFmpeg plugin loadsJan Schmidt3-0/+74
Check that the ffmpeg plugin actually exists after building.
2009-04-16gstffmpegutils: Add the files :)Edward Hervey2-0/+488
2009-04-15Move all non-codecmap-related methods to a new file.Edward Hervey9-444/+42
We were starting to get too much unrelated code in there. This makes it a bit easier to maintain.
2009-04-15gstffmpeg.c: Fix the description of the plugin.Edward Hervey1-1/+1
2009-04-15gstffmpeg.c: Point to the new ffmpeg website (ffmpeg.org).Edward Hervey1-2/+1
2009-04-15The proper spelling is 'FFmpeg'.Edward Hervey5-9/+9
2009-04-15gstffmpegmux: Use the AVFormat long_name in our descriptions.Edward Hervey1-4/+4
This is the same behaviour we use in the demuxers.
2009-04-15Disable more fake codecs (raw audio).Edward Hervey2-2/+2
2009-04-10ffdec: copy input offsets to output buffersLRN1-24/+55
Copy the incomming offsets to the outgoing buffers. Fixes 578278.
2009-04-04Automatic update of common submoduleFelipe Contreras1-0/+0
From d0ea89e to b3941ea
2009-04-04Automatic update of common submoduleEdward Hervey1-0/+0
From f8b3d91 to d0ea89e
2009-04-04ffmpeg: Fix handling of --with-ffmpeg-extra-configureBranko Čibej1-1/+1
Fixes bug #577879.
2009-03-25ffenc: Add support for I-frame request.Janin Kolenc1-0/+37
Add request for I-frame request using GstForceKeyUnit event. Fixes #575709.
2009-03-23ffmux: Actually set caps on the srcpad instead of working with NULL capsSebastian Dröge1-0/+1
2009-03-22back to development -> 0.10.7.1Jan Schmidt1-1/+1
2009-03-21Release 0.10.7Jan Schmidt5-4021/+2857
2009-03-180.10.6.4 pre-releaseJan Schmidt1-1/+1
2009-03-17Take into account ticks_per_frame for framerate calculation. Fixes #575759Edward Hervey3-5/+10
2009-03-17Re-enable amr muxer. It's a muxer after all. Fixes #575664Edward Hervey1-2/+1
2009-03-130.10.6.3 pre-releaseJan Schmidt1-1/+1