summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* avcodec: for audio encoding, reset output packet when it is not validJustin Ruggles2012-05-07
|
* avcodec: refactor avcodec_encode_audio2() to merge common branchesJustin Ruggles2012-05-07
|
* avcodec: remove fallbacks for AVCodec.encode() in avcodec_encode_audio2()Justin Ruggles2012-05-07
| | | | We no longer have any audio encoders using AVCodec.encode().
* libschroedinger: Switch to function names more in line with Libav style.Diego Biurrun2012-05-07
|
* Move code shared between libdirac and libschroedinger to libschroedinger.Diego Biurrun2012-05-07
| | | | | This also involves making some function static and changing the name prefixes of some functions and structures.
* lavfi: uninline avfilter_copy_buffer_ref_props().Anton Khirnov2012-05-07
| | | | | A nontrivial public function such as this should most certainly NOT be inline.
* lavf: add missing '*' in a doxy.Anton Khirnov2012-05-07
|
* h264: Remove a commented-out function pointer typedef.Diego Biurrun2012-05-07
|
* txd: Remove write-only variable in txd_decode_frame().Diego Biurrun2012-05-07
| | | | libavcodec/txd.c:49:60: warning: variable ‘mipmap_count’ set but not used
* mmvideo.c: Remove unused variable in mm_decode_pal().Diego Biurrun2012-05-07
| | | | libavcodec/mmvideo.c:87:9: warning: variable ‘i’ set but not used
* build: cosmetics: Add missing end-of-line backslashes to item lists.Diego Biurrun2012-05-07
|
* build: cosmetics: Split HEADERS/OBJS/PROGS lists into one entry per line.Diego Biurrun2012-05-07
|
* libschroedinger: Move a function to avoid a forward declaration.Diego Biurrun2012-05-07
|
* pthread: warn on high thread countsSean McGovern2012-05-07
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* vf_yadif: fix missing error handling for avfilter_poll_frame()Robert Nagy2012-05-07
|
* avprobe: allow showing only one container/stream property.Ronald S. Bultje2012-05-07
| | | | | | This is useful for writing unit tests. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavfi: support audio in avfilter_copy_frame_props().Anton Khirnov2012-05-07
|
* lavfi: avfilter_merge_formats: handle case where inputs are sameMina Nagy Zaki2012-05-07
| | | | | | | This fixes a double-free crash if lists are the same due to the two merge_ref() calls at the end of the (useless) merging that happens. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavc: add sample rate and channel layout to AVFrame.Anton Khirnov2012-05-07
| | | | Rationale is the same as for video width/height etc.
* zerocodec: check if the previous frame is missingPaul B Mahol2012-05-06
| | | | | | | | | ZeroCodec relies on the keyframe flag being set in the container, and prev is the previously decoded frame. A keyframe flags incorrectly set will lead to this condition. Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* doc: clarify check for NULL pointer styleLuca Barbato2012-05-06
| | | | Our code should be terse and clear.
* dfa: use more meaningful return codesKostya Shishkov2012-05-06
|
* eatgv: check vector_bitsMichael Niedermayer2012-05-06
| | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
* eatgv: check motion vectorsKostya Shishkov2012-05-06
|
* Mark a number of variables only used in av_dlog() calls as av_unused.Diego Biurrun2012-05-06
| | | | This fixes a number of unused-but-set gcc warnings.
* dvdec: drop const qualifier from variable to eliminate a warningDiego Biurrun2012-05-06
| | | | libavcodec/dvdec.c:344:12: warning: assignment discards ‘const’ qualifier from pointer target type
* avcodec: Improve comment for thread_safe_callbacks to avoid misinterpretation.Robert Nagy2012-05-06
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* tests/utils: don't ignore the return value of fwrite()Sean McGovern2012-05-06
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* lavfi/formats: use sizeof(var) instead of sizeof(type).Anton Khirnov2012-05-06
|
* lavfi: remove avfilter_default_config_input_link() declarationStefano Sabatini2012-05-06
| | | | The function is not implemented (and possibly useless).
* lavfi: always enable the scale filter and depend on sws.Anton Khirnov2012-05-06
| | | | | The scale filter is used for internal colorspace conversions, so it must always be present.
* vf_split: support user-specifiable number of outputs.Anton Khirnov2012-05-06
|
* avconv: remove stray useless comment.Anton Khirnov2012-05-06
|
* mpegmux: add stuffing to avoid incomplete PCM framesJanne Grunau2012-05-06
| | | | Fixes https://bugzilla.libav.org/show_bug.cgi?id=244
* rtsp: avoid const warnings from strtol() callMans Rullgard2012-05-06
| | | | | | | | | The strtol() interface makes it difficult to use with const-qualified pointers. With this change, although the const is still lost, the compiler does not warn about it. Signed-off-by: Mans Rullgard <mans@mansr.com>
* avserver: check return value of ftruncate()Mans Rullgard2012-05-06
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* lagarith: make offset array type unsignedKostya Shishkov2012-05-06
| | | | This is logical and also fixes checking for the fourth plane offset.
* dfa: add some checks to ensure that decoder won't write past frame endKostya Shishkov2012-05-06
|
* aacps: NEON optimisationsMans Rullgard2012-05-05
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* aacps: align some arraysMans Rullgard2012-05-05
| | | | | | This is required for SIMD optimisations. Signed-off-by: Mans Rullgard <mans@mansr.com>
* aacps: move some loops to function pointersMans Rullgard2012-05-05
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* rtpdec_h264: Add missing newlines to av_log callsMartin Storsjö2012-05-05
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec_h264: Free old extradata before clearing the pointerMartin Storsjö2012-05-05
| | | | | | | This avoids memory leaks if there actually was some extradata set before. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec_h264: Reorder code blocksMartin Storsjö2012-05-05
| | | | | | This removes one level of indentation. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec_h264: Make start_sequence a static const arrayMartin Storsjö2012-05-05
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec_h264: Cleanup debug packet type countingMartin Storsjö2012-05-05
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec_h264: Cosmetic cleanupMartin Storsjö2012-05-05
| | | | | | | Add/fix spacing, split long lines, align assignments where suitable. Signed-off-by: Diego Biurrun <diego@biurrun.de> Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec_h264: Clean up commentsMartin Storsjö2012-05-05
| | | | | | | | | Split long comments, move long comments at the end of lines to separate lines above, fix vertical alignment, fix up comment style (unify trailing dots - comments had a mix of 2, 3 or 4 dots, where it would be just as good without them at all). Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec_h264: Convert commented out code into setting an unused variableMartin Storsjö2012-05-05
| | | | | | | It is worth keeping instead of removing, in case reading this bit becomes necessary at some later point. Signed-off-by: Martin Storsjö <martin@martin.st>
* tests: Refactor rotozoom/videogen common code into a separate file.Diego Biurrun2012-05-05
|