summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* avfilter: fix graphparser memleaks on error pathsJanne Grunau2012-10-25
| | | | Fixes CID700635, CID700636 and CID732274.
* rawdec: remove ff_raw_read_headerLuca Barbato2012-10-25
| | | | It is not used anymore and is a kludge.
* pcmdec: remove dependency from rawdecLuca Barbato2012-10-25
| | | | The code shared is not actually shared with anything else.
* g722: refactor out of rawdec.cLuca Barbato2012-10-25
|
* rawvideo: use a specific read_headerLuca Barbato2012-10-25
| | | | ff_raw_read_header is used only for this demuxer for video.
* avutil: Make LZO decoder code configure-time selectableDiego Biurrun2012-10-25
|
* avutil: Move memcpy_backptr() to mem.cDiego Biurrun2012-10-25
| | | | The function is used elsewhere and does not belong with the LZO code.
* configure: detect parisc64 automaticallyMans Rullgard2012-10-24
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* configure: detect ppc64 automaticallyMans Rullgard2012-10-24
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* configure: detect mips64 automaticallyMans Rullgard2012-10-24
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* configure: generalise 64-bit testMans Rullgard2012-10-24
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* smoothstreamingenc: Don't assume streams start from timestamp 0Martin Storsjö2012-10-24
| | | | | | Also use dts instead of pts for deciding where to split fragments. Signed-off-by: Martin Storsjö <martin@martin.st>
* asfdec: cosmetics, reformat ff_asf_parse_packet()Anton Khirnov2012-10-24
|
* g.723.1: add missing CODEC_CAP_DR1Anton Khirnov2012-10-24
|
* avconv: remove now unneeded calls to avcodec_get_frame_defaults().Anton Khirnov2012-10-24
|
* lavc: initialize output AVFrame before decoding.Anton Khirnov2012-10-24
| | | | | | | Avoids memleaks with audio when extended_data is nontrivial and the user doesn't reset the frame. Shouldn't have any effect for video for now, but might be useful in the future.
* lavc: fix documentation for AVCodecContext.delayJustin Ruggles2012-10-23
|
* atrac3: return an error if extradata_size is not a specific known sizeJustin Ruggles2012-10-23
| | | | Also fixes 3 compiler warnings about using uninitialized variables.
* lavc: use the correct API version guard macro for avcodec_encode_audio()Justin Ruggles2012-10-23
|
* Move Doxyfile into the doc/ subdirectoryDiego Biurrun2012-10-23
|
* doxygen: Build Doxygen documentation in the doc/ subdirectoryDiego Biurrun2012-10-23
|
* dfa: use av_memcpy_backptr() where previously impossibleMans Rullgard2012-10-23
| | | | | | | Since the requirement for output padding has been lifted, we can use av_memcpy_backptr() here as well. Signed-off-by: Mans Rullgard <mans@mansr.com>
* av_memcpy_backptr: Drop no longer necessary malloc paddingDiego Biurrun2012-10-23
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Remove need for padding in av_memcpy_backptr()Mans Rullgard2012-10-23
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* lzo: Use AV_COPY*U macros where appropriateDiego Biurrun2012-10-23
|
* prepare 9_beta2 releaseReinhard Tartler2012-10-23
|
* dsputil: Replace AV_WNxx(AV_RNxx()) combinations by AV_COPYxxUDiego Biurrun2012-10-23
|
* intreadwrite: Add AV_COPYxxU macros for copying to/from unaligned addressesDiego Biurrun2012-10-23
|
* dxtory: Replace AV_WN16A(AV_RN16A()) combination by AV_COPY16Diego Biurrun2012-10-23
|
* mp3: properly forward mp_decode_frame errorsLuca Barbato2012-10-23
| | | | | The function can return either a parsing error or a memory management error.
* mp3: exit on parsing error in mp_decode_frameLuca Barbato2012-10-23
| | | | | | | Properly forward mp_decode_layer3 errors, mp_decode_layer1 and mp_decode_layer2 do not return errors. Based on a patch by Michael Niedermayer.
* rtmppkt: Avoid unescaped backslash in Doxygen commentDiego Biurrun2012-10-23
|
* fate-lavfi: replace sed/grep/cut combos with awkMans Rullgard2012-10-23
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: Plan 9 supportMans Rullgard2012-10-23
| | | | | | | | | | | | | This adds support for building on Plan 9 x86-32. The compat/plan9 directory contains these items: - replacements for the 'head' and 'printf' shell commands - wrapper for main() to disable FPU exceptions Larger required changes to the system are described in the documentation. Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: allow targets to specify extra objects to link with executablesMans Rullgard2012-10-23
| | | | | | | This allows targets to include special objects when linking executables without including them in (shared) libraries. Signed-off-by: Mans Rullgard <mans@mansr.com>
* swscale: avoid pointless use of compound literalsMans Rullgard2012-10-23
| | | | | | Some compilers (e.g. old gcc) have trouble with these. Signed-off-by: Mans Rullgard <mans@mansr.com>
* libm: add fallbacks for various single-precision functionsMans Rullgard2012-10-23
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* network: use getservbyport() only if availableMans Rullgard2012-10-23
| | | | | | | The absence of this function will only give a less informative string back from our fallback implementation of getnameinfo(). Signed-off-by: Mans Rullgard <mans@mansr.com>
* network: add fallbacks for INADDR_LOOPBACK and INET_ADDRSTRLENMans Rullgard2012-10-23
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Include sys/time.h before sys/resource.hMans Rullgard2012-10-23
| | | | | | | Some systems require sys/time.h being explicitly included before sys/resource.h. The configure check already does this. Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: check that dependencies actually existMans Rullgard2012-10-23
| | | | | | | This causes make to exit with an error message if a nonexistent dependency is specified rather than silently dropping the test. Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: fix ENCMUX macroMans Rullgard2012-10-23
| | | | | | This matches how it is actually being called. Signed-off-by: Mans Rullgard <mans@mansr.com>
* mpegaudiodec: Fix buffer handling on random accessMichael Niedermayer2012-10-23
|
* mpegaudio: Refactor mp3on4 flush functionDiego Biurrun2012-10-23
|
* fate: Add dependencies for audio testsDiego Biurrun2012-10-23
|
* fate: cosmetics: Group idct8x8 test together with all other libavcodec testsDiego Biurrun2012-10-23
|
* fate: More fine-grained dependencies for libavcodec test programsDiego Biurrun2012-10-23
|
* fate: Declare avcodec/avformat deps in the respective Makefile snippetsDiego Biurrun2012-10-23
|
* fate: Add dependencies for WMA and WavPack testsDiego Biurrun2012-10-23
|
* Improve wording and spelling of av_log_missing_feature messages.Diego Biurrun2012-10-23
|