summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-03-11pixfmt: Stop using PIX_FMT that were marked as deprecated 3 years ago.Edward Hervey2-25/+25
It still worked... until the 0.5 ffmpeg release, which made those defines unused. See the bottom of libavutil/pixfmt.h for more details.
2009-03-11ffmpegrev: bump up upstream revision to the *exact* release revision.Edward Hervey1-1/+1
This is only a one-commit svn-props change.. but we might as well keep it accurate.
2009-03-10codecmapping: Fix caps for ATRAC3. Fixes #574663Edward Hervey1-2/+5
2009-03-10Disable exposing decoder/encoder using external library. Fixes #574746Edward Hervey2-0/+20
2009-03-10blacklist bogus demuxer/muxer/typefind. Fixes #567336 and #574814Edward Hervey2-3/+21
2009-03-100.10.6.2 pre-releaseJan Schmidt1-1/+1
2009-03-09Automatic update of common submoduleJan Schmidt1-0/+0
From 7032163 to f8b3d91
2009-03-09gstffmpegdec: Use 64bit scaling function to avoid overflows detected in some ↵Edward Hervey1-1/+1
situations.
2009-03-09demux: If the demuxer isn't initialized yet, forward serialized events ↵Edward Hervey1-2/+7
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.
2009-03-09demuxers: Blacklist push-mode for avformat demuxers which aren't reliable in ↵Edward Hervey1-1/+16
push-mode. Currently, only one is blacklisted : ffdemux_ape. This has been confirmed by ffmpeg developers.
2009-03-09demuxers: Add more debuggingEdward Hervey3-0/+11
2009-03-09ffmpegrev: and update once more for last-minute fixes to upstream release branchEdward Hervey1-2/+2
2009-03-09gstffmpegcodecmap: Add proper caps for Fraps video codecEdward Hervey1-0/+3
2009-03-08Automatic update of common submoduleSebastian Dröge1-0/+0
From ffa738d to 7032163
2009-03-08Automatic update of common submoduleSebastian Dröge1-0/+0
From 3f13e4e to ffa738d
2009-03-07Automatic update of common submoduleSebastian Dröge1-0/+0
From 3c7456b to 3f13e4e
2009-03-07Automatic update of common submoduleSebastian Dröge1-0/+0
From 57c83f2 to 3c7456b
2009-03-06configure: require a released version of gstreamer, to avoid confusionTim-Philipp Müller1-1/+1
2009-03-06ffmpegdec: Make sure we provide 16 byte aligned data to ffmpeg. Fixes #572863Edward Hervey1-2/+6
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.
2009-03-06ffaudioresample: Add padding to output buffer. Fixes #573649Edward Hervey1-1/+3
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).
2009-03-06ffmpegdec: post an error message on the bus when decoding failsTim-Philipp Müller1-1/+2
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.
2009-03-05gstffmpegdec: Set the rank of the AAC decoder to NONE.Edward Hervey1-0/+6
It will stay this way until the ffmpeg aac decoder can report before decoding whether it can handle a given stream or not.
2009-03-05Make bz2 requirement optional. Fixes #564867Damien Lespiau2-2/+12
2009-03-05gstffmpegmux: Expose the 'preload' and 'maxdelay' properties, add dvd mux ↵Jordi Mas2-0/+85
mapping. Fixes #570975
2009-03-05codecmap. The VC1 decoder can also handle the Advanced Profile.Edward Hervey1-1/+2
Fixes #565269
2009-03-04ffdec: fix buildTim-Philipp Müller1-4/+4
2009-03-04gstffmpegdec: Abort on first failure by AAC decoder. Fixes #566250.Edward Hervey1-0/+7
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.
2009-03-04gstffmpegdec: Bring the real decoders up to GST_RANK_PRIMARY.Edward Hervey1-0/+6
They have proven by now that they're more reliable than the -bad real wrapper plugins.
2009-03-04ffmpeg: Don't register the MXF typefinder, we have our own in -baseSebastian Dröge1-0/+1
2009-03-04ffmpeg: mxf_d10 is application/mxf too, it only specifies the used mappingSebastian Dröge1-1/+1
2009-03-03ffmpegrev: Update to actual ffmpeg 0.5 release branchEdward Hervey1-2/+2
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.
2009-03-02ffmpegrev: Switch to 0.5 ffmpeg release branchEdward Hervey1-2/+2
2009-02-27ffmpeg: Bump up to current upstream HEAD of ffmpeg and swscaleEdward Hervey1-2/+2
2009-02-27ffmpegmux: Use information from AVOutputFormat to expose more muxers.Edward Hervey3-3/+41
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.
2009-02-25build: Update shave init statement for changes in common. Bump common.Jan Schmidt2-1/+1
2009-02-25Automatic update of common submoduleJan Schmidt1-0/+0
From 9cf8c9b to a6ce5c6
2009-02-22Use shave for the buildJan Schmidt2-4/+8
2009-02-22And remove unused variableSebastian Dröge1-1/+0
2009-02-22Remove unreachable codeSebastian Dröge1-3/+0
2009-02-22Cast const GstBuffer * to GstBuffer * before unreffingSebastian Dröge1-1/+1
2009-02-22Automatic update of common submoduleJan Schmidt1-0/+0
From 5d7c9cc to 9cf8c9b
2009-02-22ffmpegrev: Update upstream revisions usedEdward Hervey1-2/+2
2009-02-21Automatic update of common submoduleDavid Schleef1-0/+0
From 80c627d to 5d7c9cc
2009-02-18codecmap: map more codecsEdward Hervey1-0/+20
2009-02-18ffmpegrev: update upstream ffmpeg/libswscale revisions to use.Edward Hervey1-2/+2
2009-02-10Fix 'make distcheck'.Edward Hervey1-1/+1
2009-02-10Bump upstream ffmpeg revision to use.Edward Hervey1-2/+2
We should update this gradually as ffmpeg will be releasing within 2 weeks.
2009-02-09Bump revision to use for common submodule.Edward Hervey1-0/+0
2009-02-05Don't register ASS/SSA typefinderSebastian Dröge1-0/+1
2009-01-30Add releaseinfo with online url.Stefan Kost1-0/+5