summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* tcp: Allow signalling end of reading/writingSamuel Pitoiset2012-05-22
| | | | | | | tcp_shutdown() isn't needed at the moment, but is added for consistency to explain how the function is supposed to be used. Signed-off-by: Martin Storsjö <martin@martin.st>
* avio: Add a function for signalling end of reading/writingSamuel Pitoiset2012-05-22
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* lavfi: fix comment, audio is supported now.Anton Khirnov2012-05-22
|
* lavfi: fix incorrect comment.Anton Khirnov2012-05-22
| | | | poll_frame()/request_frame() are used for audio too.
* lavfi: remove avfilter_null_* from public API on next bump.Anton Khirnov2012-05-22
| | | | | Those functions are only useful inside filters. It is better to not support user filters until the API is more stable.
* lavfi: remove avfilter_default_* from public API on next bump.Anton Khirnov2012-05-22
| | | | | Those functions are only useful inside filters. It is better to not support user filters until the API is more stable.
* lavfi: deprecate default config_props() callback and refactor ↵Mina Nagy Zaki2012-05-22
| | | | | | | | | | | | avfilter_config_links() Link properties have to be checked after config_props() is called to make sure everything is sane, so the default config_props() for output links was redundant. Remove now empty defaults.c Signed-off-by: Anton Khirnov <anton@khirnov.net>
* avfiltergraph: smarter sample format selection.Anton Khirnov2012-05-22
|
* avconv: rename transcode_audio/video to decode_audio/video.Anton Khirnov2012-05-22
| | | | | Those functions do only decoding now, encoding is run from poll_filters().
* asyncts: reset delta to 0 when it's not used.Anton Khirnov2012-05-22
| | | | Fixes an invalid write.
* x86: lavc: use %if HAVE_AVX guards around AVX functions in yasm code.Justin Ruggles2012-05-22
| | | | | | This is needed for older versions of yasm/nasm that do not support AVX. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* dwt: return errors from ff_slice_buffer_init()Diego Biurrun2012-05-22
|
* dwt: check malloc callsJordi Ortiz2012-05-22
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* ppc: Drop unused header regs.hDiego Biurrun2012-05-22
|
* af_resample: remove an extra space in the log outputJustin Ruggles2012-05-21
|
* Convert vector_fmul range of functions to YASM and add AVX versionsKieran Kunhya2012-05-21
| | | | Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* lavfi: add an audio split filterJustin Ruggles2012-05-21
| | | | | Based on current version of the asplit filter in FFmpeg written by Stefano Sabatini and others.
* lavfi: rename vf_split.c to split.cJustin Ruggles2012-05-21
| | | | This is in preparation for adding an audio split filter.
* dwt: K&R prettyprinting cosmeticsJordi Ortiz2012-05-21
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* Remove libnut wrapperDiego Biurrun2012-05-21
| | | | libnut is unmaintained and known to be buggy; native NUT code exists.
* fate: change name of FATE samples location environment variableDiego Biurrun2012-05-21
| | | | | | FATE_SAMPLES is now used directly by the Makefiles, which induces the test system to run a test with the value of the environment variable as name. Renaming the environment variable to LIBAV_SAMPLES avoids this problem.
* avformat: Add a flag to mark muxers that allow (non strict) monotone timestamps.James Zern2012-05-20
| | | | Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* http: Factorize the code by adding http_read_header()Samuel Pitoiset2012-05-20
| | | | | | This function is used for reading http reply headers. Signed-off-by: Martin Storsjö <martin@martin.st>
* indeo: Make ivi_calc_band_checksum() static, it is only used in one file.Diego Biurrun2012-05-20
|
* indeo: Drop unused debug function ivi_check_band().Diego Biurrun2012-05-20
|
* avcodec/utils: cast a function argument to shut up a compiler warningDiego Biurrun2012-05-20
| | | | libavcodec/utils.c:251: note: expected ‘const uint8_t *’ but argument is of type ‘const short int *’
* truemotion1: remove disabled codeDiego Biurrun2012-05-20
|
* fix typo in commentKostya Shishkov2012-05-20
|
* fate: fix dependencies for non-SAMPLES avconv testsMans Rullgard2012-05-20
| | | | | | | | The encode/decode tests should all depend on avconv. Since avconv requires libavfilter, there is no need to enable those tests selectively. Signed-off-by: Mans Rullgard <mans@mansr.com>
* indeo: check for invalid motion vectorsKostya Shishkov2012-05-20
|
* indeo: check that band output buffer existsKostya Shishkov2012-05-20
|
* indeo: clear allocated band buffersKostya Shishkov2012-05-20
|
* indeo: track tile macroblock sizeKostya Shishkov2012-05-20
|
* indeo: check custom Huffman tables for errorsKostya Shishkov2012-05-20
|
* factor out common decoding code for Indeo 4 and Indeo 5Kostya Shishkov2012-05-20
|
* mp3: fix start band index for block type 2 in 8kHz audioKostya Shishkov2012-05-20
| | | | | | | | In hybrid frames long window part ends at 36 samples for most of the cases but at 72 for 8kHz case. For some reason decoder assumed it's 48 or even 36 samples, which caused wrong bitstream decoding for such blocks. l3_25207.mpg from conformance suite demonstrates it the best.
* lavf: change some (de)muxer names to lowercaseMans Rullgard2012-05-19
| | | | | | This is consistent with other format names. Signed-off-by: Mans Rullgard <mans@mansr.com>
* lavf: make output format matching case insensitiveMans Rullgard2012-05-19
| | | | | | This is consistent with how input formats are matched. Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: fix dependencies on SAMPLES being setMans Rullgard2012-05-19
| | | | | | | This allows fate to run without errors with or without SAMPLES being set. Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: remove unnecessary libavfilter dependencyMans Rullgard2012-05-19
| | | | | | avconv now requires libavfilter so this dependency is redundant. Signed-off-by: Mans Rullgard <mans@mansr.com>
* avconv: reindentAnton Khirnov2012-05-18
|
* avconv: replace -vsync cfr code with the fps filter.Anton Khirnov2012-05-18
| | | | | | | | Invented timestamps for the h264 tests return to something resembling sanity. In the idroq-video-encode test when converting 25 fps -> 30 fps the fifth frame gets duplicated instead of the sixth.
* mov: enable parsing for VC-1.Anton Khirnov2012-05-18
| | | | | This makes lavf discard broken timestamps for non-B frames in samples/isom/vc1-wmapro.ism.
* lavfi: Add fps filter.Anton Khirnov2012-05-18
| | | | Partially based on a patch by Robert Nagy <ronag89@gmail.com>
* lavfi: initialize pts to AV_NOPTS_VALUE when creating new buffer refs.Anton Khirnov2012-05-18
|
* avconv: add support for audio in complex filtergraphs.Anton Khirnov2012-05-18
|
* doc: Replace some @file tags by more suitable markup.Diego Biurrun2012-05-18
|
* fate: Set FUZZ factor of vorbis-13 test to 2.Diego Biurrun2012-05-18
| | | | | This is necessary to account for different rounding done in the 3DNow! Assembly optimizations.
* fate: Set FUZZ factor of (e)ac3-encode test to 3.Diego Biurrun2012-05-18
| | | | | This is necessary to account for different rounding done in the 3DNow! Assembly optimizations.
* fate: remove unused code from regressions-funcs.shMans Rullgard2012-05-18
| | | | | | | The only uses of the do_avconv_nomd5() function were removed in 85cf49f. Signed-off-by: Mans Rullgard <mans@mansr.com>