summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* adpcmdec: use planar sample format for adpcm_ima_qtJustin Ruggles2012-10-09
|
* pcmdec: use planar sample format for pcm_lxfJustin Ruggles2012-10-09
|
* mace: use planar sample formatJustin Ruggles2012-10-09
|
* atrac1: use planar sample formatJustin Ruggles2012-10-09
|
* build: non-x86: Only compile mpegvideo optimizations when necessaryDiego Biurrun2012-10-09
|
* rtpdec_mpeg4: au_headers is a single array, simple av_free is enoughJanne Grunau2012-10-09
| | | | Fixes CID700204.
* avcodec: free extended_data instead address of itJanne Grunau2012-10-09
| | | | Fixes CID732173.
* fate: Add tests of the ff_make_absolute_url functionMartin Storsjö2012-10-09
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* url: Handle relative urls starting with two slashesDuncan Salerno2012-10-09
| | | | | | This is defined by RFC 3986 section 5.4.1 to be handled this way. Signed-off-by: Martin Storsjö <martin@martin.st>
* url: Handle relative urls being just a new query stringDuncan Salerno2012-10-09
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* url: Don't treat slashes in query parameters as directory separatorsDuncan Salerno2012-10-09
| | | | | | | Strip off query parameters from the original url before applying the new relative path. Signed-off-by: Martin Storsjö <martin@martin.st>
* mingw/cygwin: Stop adding -fno-common to gcc CFLAGSDiego Biurrun2012-10-09
| | | | This was done to work around toolchain bugs that have long been fixed.
* Restructure av_log_missing_feature messageDiego Biurrun2012-10-09
| | | | | | | | Some invocations include a verb in the log message, others do not. Yet av_log_missing_feature expects callers to provide a verb. Change the function to include a verb instead and update the callers accordingly. The result is a more natural function API and correct English in the function invocations.
* rtp: Support packetization/depacketization of opusMartin Storsjö2012-10-09
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* file: Set the return value type for lseek to int64_t.Yusuke Nakamura2012-10-09
| | | | | | This fixes a regression in 4ed5ac5. Signed-off-by: Martin Storsjö <martin@martin.st>
* ppc: fix Altivec build with old compilersMans Rullgard2012-10-08
| | | | | | | | | The vec_splat() intrinsic requires a constant argument for the element number, and the code relies on the compiler unrolling the loop to provide this. Manually unrolling the loop avoids this reliance and works with all compilers. Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: add LTO support for PGI compilerMans Rullgard2012-10-08
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: add -Mdse to PGI optimisation flagsMans Rullgard2012-10-08
| | | | | | | | Enable dead store elimination. The last few releases work no worse with this flag than without. Older versions failed to build some source files when using this flag. Signed-off-by: Mans Rullgard <mans@mansr.com>
* rtpenc_vp8: Update the packetizer to the latest spec versionMartin Storsjö2012-10-08
| | | | | | Tested to work with the gstreamer depacketizer. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec_vp8: Make the depacketizer implement the latest spec draftMartin Storsjö2012-10-08
| | | | | | | | | | | Not all details are implemented, but it's enough for proper playback as long as there is no packet loss. Tested to work with the packetizer in gstreamer (which although uses a different codec name, to clarify that it is still a spec draft). Signed-off-by: Martin Storsjö <martin@martin.st>
* doc: allow building with old texi2html versionsMans Rullgard2012-10-08
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* avutil: skip old_pix_fmts.h since it is just a listJanne Grunau2012-10-08
|
* x86: vc1: call ff_vc1dsp_init_x86() under if (ARCH_X86)Janne Grunau2012-10-08
|
* x86: cavs: call ff_cavsdsp_init_x86() under if (ARCH_X86)Janne Grunau2012-10-08
|
* x86: call most of the x86 dsp init functions under if (ARCH_X86)Janne Grunau2012-10-08
| | | | Rename the called dsp init functions to *_init_x86.
* doc: support the new website layoutLuca Barbato2012-10-08
|
* doc: remove a warning from filters.texiLuca Barbato2012-10-08
| | | | The tag @table expects @item to mark entries.
* doc: initial nut documentationLuca Barbato2012-10-08
|
* segment: drop global headers settingLuca Barbato2012-10-08
| | | | | | | | avconv provides an option to set it externally and there isn't a way for the outer demuxer to report the inner demuxer flag. Solves a bad interaction between mpegts and x264, but requires additional setting for the user.
* lavu: fix typo in MakefileAnton Khirnov2012-10-08
|
* Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov2012-10-08
|
* pixfmt: add AV_ prefixes to PIX_FMT_*Anton Khirnov2012-10-08
|
* af_resample: avoid conversion of identical sample formats for 1 channelJustin Ruggles2012-10-07
| | | | | When there is only 1 channel, the planar and interleaved formats of the same data type should be treated as identical.
* avcodec: allow either planar or interleaved sample format when encoding monoJustin Ruggles2012-10-07
| | | | | When there is only 1 channel, the planar and interleaved formats of the same data type should be treated as identical.
* adpcmenc: ensure calls to adpcm_ima_compress_sample() are in the right orderJustin Ruggles2012-10-07
| | | | Should fix fate-acodec-adpcm-ima_wav with several compilers.
* timefilter: De-doxygenize normal code comments and drop silly onesDiego Biurrun2012-10-07
|
* gxf: Include the right header for the avpriv_frame_rate_tab declarationMartin Storsjö2012-10-07
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* wmaenc: use float planar sample formatJustin Ruggles2012-10-06
|
* (e)ac3enc: use planar sample formatJustin Ruggles2012-10-06
|
* aacenc: use planar sample formatJustin Ruggles2012-10-06
|
* adpcmenc: use planar sample format for adpcm_ima_wav and adpcm_ima_qtJustin Ruggles2012-10-06
|
* adpcmenc: move 'ch' variable to higher scopeJustin Ruggles2012-10-06
| | | | It is used for multiple codecs.
* adpcmenc: fix 3 instances of variable shadowingJustin Ruggles2012-10-06
|
* adpcm_ima_wav: simplify encodingJustin Ruggles2012-10-06
|
* libvorbis: use planar sample formatJustin Ruggles2012-10-06
|
* libmp3lame: use planar sample formatsJustin Ruggles2012-10-06
|
* vorbisenc: use float planar sample formatJustin Ruggles2012-10-06
|
* ffm: do not write or read the audio sample formatJustin Ruggles2012-10-06
|
* parseutils: fix parsing of invalid alpha valuesMans Rullgard2012-10-06
| | | | | | | | | | An alpha specifier outside the valid range results in a conversion from double to long with undefined result. Range-checking the double and only converting it after it passes avoids this. Fixes fate-parseutils errors on some systems. Signed-off-by: Mans Rullgard <mans@mansr.com>
* doc/RELEASE_NOTES: update for the 9 release.Anton Khirnov2012-10-06
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>