aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* update changelog for upcoming 0.6.1 point releaseReinhard Tartler2010-07-311-0/+9
| | | | Originally committed as revision 24633 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Backport AAC-HE v2 from trunkReinhard Tartler2010-07-2817-307/+1908
| | | | | | | | This patch has seen testing for a couple of weeks in ubuntu maverick and debian/experimental w/o negative feedback so far. Originally committed as revision 24576 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* aviobuf: Do short seeks forward by reading and skipping data instead of a ↵Reinhard Tartler2010-07-191-1/+10
| | | | | | | | | | | | proper seek This improves performance on e.g. seekable http. backport r24280 by mstorsjo Originally committed as revision 24335 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* ac3: make the value of codec_id during (E-)AC-3 parsing stay CODEC_ID_EAC3Reinhard Tartler2010-07-091-1/+1
| | | | | | | | | | | if any E-AC-3 frames have been detected instead of switching back and forth for AC-3 core + dependent E-AC-3 substream(s). Fixes Issue 2022. backport r24103 by jbr Originally committed as revision 24136 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Add VP80 fourccGoogle2010-06-281-0/+1
| | | | | | | | | Patch by Google backport r23193 by conrad Originally committed as revision 23863 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Doxygen av_codec_get_id() and av_codec_get_tag().Reinhard Tartler2010-06-261-1/+15
| | | | | | | backport r23102 by stefano Originally committed as revision 23801 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Some fields were incorrectly reset (to NULL) when calling ↵Jean-Daniel Dupas2010-06-261-3/+0
| | | | | | | | | | | | avcodec_copy_context(). Patch by Jean-Daniel Dupas, devlists shadowlab org backport r23344 by cehoyos Originally committed as revision 23793 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* 10l: aacsbr: Fix f_master[2] calculation when k2diff == -1.Reinhard Tartler2010-06-241-1/+1
| | | | | | | backport r23660 by alexc Originally committed as revision 23747 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Fix two small typos.Diego Biurrun2010-06-211-2/+2
| | | | Originally committed as revision 23678 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* remove note that libvpx was considered (L)GPL incompatibleReinhard Tartler2010-06-161-1/+0
| | | | Originally committed as revision 23623 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* configure: fix symver detection with icc 10v0.6Reinhard Tartler2010-06-151-1/+3
| | | | | | | | | | | | | | Apparently the compiler sometimes bypasses the normal assembler, in which case the asm label variant works. If the file contains any inline asm, this bypassing is not done, and the assembler chokes on invalid syntax. Inserting a dummy asm() statement in the test when the compiler supports it makes sure no shortcuts are taken and the test fails as it should. backport r23616 by mru Originally committed as revision 23618 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Fix symbol version compat wrappers on systems with export prefixesReinhard Tartler2010-06-151-5/+5
| | | | | | | backport r23615 by mru Originally committed as revision 23617 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Add compatibility wrappers for functions moved from lavf to lavcReinhard Tartler2010-06-153-2/+57
| | | | | | | | | | | When symbol versioning is enabled, moving symbols from one library to another breaks binary compatibility. This adds wrappers with the old version tag for the av_*packet functions recently moved to lavc. backport r23611 by mru Originally committed as revision 23613 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* revert r23610, better patch is pendingReinhard Tartler2010-06-152-54/+2
| | | | Originally committed as revision 23612 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* add symver hacks for gnu linkersReinhard Tartler2010-06-152-2/+54
| | | | | | | | | | this patch restores binary compatibility for the av_*_packet symbols that have been moved from libavformat to libavcodec. This patch works for gnu toolchains only; support for ARM RCVT will be handed in for a later point release as soon as the patch is ready and approved by the ARM maintainer(s). Originally committed as revision 23610 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* remove redundant changelog entryReinhard Tartler2010-06-101-1/+0
| | | | Originally committed as revision 23560 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* librtmp may link to different ssl implementationsReinhard Tartler2010-06-091-1/+1
| | | | | | | | | | | Make sure we link using the right libs by using pkg-config backport r23511 by lu_zero Originally committed as revision 23550 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Add WebM muxerJames Zern2010-06-097-5/+48
| | | | | | | | | Patch by James Zern <jzern at google> backport r23474 by conrad Originally committed as revision 23549 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* libvpx now has an (L)GPL-compatible license.Reinhard Tartler2010-06-052-5/+0
| | | | | | | backport r23482 by diego Originally committed as revision 23487 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* update RELEASE notesReinhard Tartler2010-06-051-5/+2
| | | | | | | | VP8 license issues seem to have solved, plus include wording suggestion from discussion on -cvslog Originally committed as revision 23483 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* VP8 encoding via libvpx.James Zern2010-06-037-6/+498
| | | | | | | | | | Patch by James Zern, Google, Inc. backport r23449 by cehoyos Originally committed as revision 23455 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Add an entry to APIchanges for the addition of sws_convertPalette8ToPacked32 -24Reinhard Tartler2010-06-035-48/+75
| | | | | | | backport r23415 by siretart Originally committed as revision 23446 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* updates: introductionary and more general notes, add missing items from ↵Reinhard Tartler2010-06-021-1/+15
| | | | | | changelog Originally committed as revision 23420 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* disable (native) vorbis encoder for the 0.6 branchReinhard Tartler2010-06-011-1/+1
| | | | Originally committed as revision 23416 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* ffmpeg: offer alternatives for experimental codecs if they existReinhard Tartler2010-06-011-0/+6
| | | | | | | backport r23398 by janne Originally committed as revision 23400 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* ffmpeg: fail if user selected codec is experimental and ↵Reinhard Tartler2010-06-011-7/+23
| | | | | | | | | strict_std_compliance > experimental backport r23397 by janne Originally committed as revision 23399 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Add a short note about libvpx.Reinhard Tartler2010-05-311-0/+4
| | | | | | | backport r23394 by diego Originally committed as revision 23395 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Require --enable-nonfree flag for libvpx.Diego Biurrun2010-05-301-0/+1
| | | | | | | | | | The license of libvpx is incompatible with the (L)GPL. As long as this is the case, the only way to use it is by marking the result as nonfree. backport r23371 by diego Originally committed as revision 23390 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Treat SIPP like xvid, fixed issue1966Reinhard Tartler2010-05-291-1/+3
| | | | | | | backport r23336 by michael Originally committed as revision 23385 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Samsung uses SIPP as FourCC for MPEG-4 ASP.Reinhard Tartler2010-05-291-0/+1
| | | | | | | backport r23309 by cehoyos Originally committed as revision 23384 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* ffserver: Send a Content-Base header in the reply to RTSP DESCRIBE requestsReinhard Tartler2010-05-291-0/+1
| | | | | | | | | | This is needed for QuickTime Player to be able to connect properly. backport r23325 by mstorsjo Originally committed as revision 23383 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* backport latest ffserver fixes like memory leaks and invalid readsReinhard Tartler2010-05-291-9/+25
| | | | | | | | | | Patches by Howard Chu, hyc at highlandsun dot com backport r23290-23295 by mstorsjo Originally committed as revision 23382 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Mark vorbis encoder as experimental.Reinhard Tartler2010-05-291-1/+1
| | | | | | | backport r23339 by cehoyos Originally committed as revision 23381 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Mark AAC encoder as experimental.Reinhard Tartler2010-05-291-1/+1
| | | | | | | backport r23350 by alexc Originally committed as revision 23380 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Add CODEC_CAP_EXPERIMENTAL and prefer encoders without it.Janne Grunau2010-05-294-5/+18
| | | | | | | | | | Patch by Janne Grunau, janne-ffmpeg jannau net backport r23334,23337-23338 by cehoyos and stefano Originally committed as revision 23379 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Check for VUI overeading and reset num_reoder_frames.Reinhard Tartler2010-05-291-0/+6
| | | | | | | | | | This helps the video from issue1831 backport r23328 by michael Originally committed as revision 23378 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* api-example: Try to avoid decoding incomplete framesReinhard Tartler2010-05-291-20/+29
| | | | | | | | | | | Use a larger input audio buffer, refill it when it has less than 4 KB data left. backport r23323 by mstorsjo Originally committed as revision 23377 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* matroska: Add V_VP8Google2010-05-291-0/+1
| | | | | | | | | Patch by Google backport r23192 by conrad Originally committed as revision 23376 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Fix VP8 listing in general.texiReinhard Tartler2010-05-291-1/+1
| | | | | | | backport r23306 by mstorsjo Originally committed as revision 23375 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* VP8 decoding via libvpxJames Zern2010-05-297-3/+137
| | | | | | | | Patch by James Zern for Google, Inc., jzern google com backportd r23191,23303,23307-23308 by conrad, cehoyos and mstorsjo Originally committed as revision 23374 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Display a more descriptive log message when probe buffer limit is Reinhard Tartler2010-05-291-1/+1
| | | | | | | | | | | reached. backport r23288 by jai_menon Originally committed as revision 23373 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Fix documentation of av_audio_convert.Cyril Russo2010-05-291-2/+2
| | | | | | | | | | Patch by Cyril Russo, stage D nexvision A laposte net backport r23285 by cehoyos Originally committed as revision 23372 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* matroskaenc: Write codec time base as default duration for video tracks.Reinhard Tartler2010-05-283-24/+25
| | | | | | | | | | | This isn't exactly semantically equivalent, but the field has already been long abused to mean this, and writing it helps in determining a decent cfr time base when transcoding from a mkv where the video codec stores none (VP8). backport r23284 by conrad Originally committed as revision 23365 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Reduce the score for the aea demuxer probing function.Reinhard Tartler2010-05-271-1/+1
| | | | | | | backport r23273 by banan Originally committed as revision 23356 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Fix detection of some stereo atrac files by not comparing theReinhard Tartler2010-05-271-3/+2
| | | | | | | | | | block size mode and info byte. backport r23272 by banan Originally committed as revision 23355 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* write 3gp perf tag for artist metadataReinhard Tartler2010-05-271-0/+1
| | | | | | | backport r23268 by bcoudurier Originally committed as revision 23354 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* change author metadata to artist in mov de/muxerReinhard Tartler2010-05-273-3/+3
| | | | | | | backport r23266 by bcoudurier Originally committed as revision 23353 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Cosmetics : re-indent after last commit.Reinhard Tartler2010-05-251-1/+1
| | | | | | | backport r23265 by jai_menon Originally committed as revision 23327 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* FFplay : Avoid manipulating NULL data pointers so that future checks Reinhard Tartler2010-05-251-0/+2
| | | | | | | | | | | | remain valid. This fixes segfaults for those cases where data copy to this invalid pointer is attempted. backport r23264 by jai_menon Originally committed as revision 23326 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
* Document CODEC_FLAG_EMU_EDGE and avcodec_align_dimensions interaction.Reinhard Tartler2010-05-251-0/+8
| | | | | | | backport r23258 by reimar Originally committed as revision 23321 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6