summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* avio: make url_read_complete() internal.Anton Khirnov2011-04-04
|
* avio: make url_read() internal.Anton Khirnov2011-04-04
|
* avio: make url_open() internal.Anton Khirnov2011-04-04
|
* avio: make url_connect internal.Anton Khirnov2011-04-04
|
* avio: make url_alloc internal.Anton Khirnov2011-04-04
|
* applehttp: Merge two for loopsMartin Storsjö2011-04-04
| | | | | The previous commit didn't do this straight away, to keep the diff slightly simpler.
* applehttp: Restructure the demuxer to use a custom AVIOContextMartin Storsjö2011-04-04
| | | | | | This avoids issues where EOF at the end of the segment is given the variant demuxer. Now the demuxers only see one single data stream (as when using the applehttp protocol handler).
* applehttp: Move finished and target_duration to the variant structMartin Storsjö2011-04-04
| | | | | This is a preparation for a restructuring of the demuxer, to minimize the later diff.
* aacenc: reduce the number of loop index variablesYoung Han Lee2011-04-04
| | | | Signed-off-by: Janne Grunau <janne-libav@jannau.net>
* avio: deprecate url_open_protocolAnton Khirnov2011-04-04
| | | | | The unbuffered API will be made private and it's not used anywhere internally.
* avio: deprecate url_poll and URLPollEntryAnton Khirnov2011-04-04
| | | | | They're unimplemented and nobody cared to do anything with that for 10 years.
* ac3enc: select bandwidth based on bit rate, sample rate, and number ofJustin Ruggles2011-04-03
| | | | | | | full-bandwidth channels. This reduces high-frequency artifacts and improves the quality of the lower frequency audio at low bit rates.
* flvdec: fix segfault in amf_parse_object() due to NULL keyJustin Ruggles2011-04-03
| | | | fixes Issue 2674
* fate: fix partial run when no samples path is specifiedMans Rullgard2011-04-03
| | | | | | | | | | This restores the behaviour of running only the builtin regression tests when no path to external samples is given. aa3805a inadvertently broke this by always setting SAMPLES to something. Using := makes the ifdef test work as expected when the FATE_SAMPLES environment variable is empty. Signed-off-by: Mans Rullgard <mans@mansr.com>
* ARM: NEON fixed-point forward MDCTMans Rullgard2011-04-03
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* ARM: NEON fixed-point FFTMans Rullgard2011-04-03
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* lavf: bump minor version and add an APIChanges entry for avio changesAnton Khirnov2011-04-03
|
* avio: simplify url_open_dyn_buf_internal by using avio_alloc_context()Anton Khirnov2011-04-03
|
* avio: make url_fdopen internal.Anton Khirnov2011-04-03
| | | | | The unbuffered URLContext API will be made private, so there's no point in this function being public.
* avio: make url_open_dyn_packet_buf internal.Anton Khirnov2011-04-03
| | | | | | | It doesn't look fit to be a part of the public API. Adding a temporary hack to ffserver to be able to use it, should be cleaned up when somebody is up for it.
* avio: avio_ prefix for url_close_dyn_bufAnton Khirnov2011-04-03
|
* avio: avio_ prefix for url_open_dyn_bufAnton Khirnov2011-04-03
|
* avio: introduce an AVIOContext.seekable fieldAnton Khirnov2011-04-03
| | | | Use it instead of url_is_streamed and AVIOContext.is_streamed.
* ac3enc: use generic fixed-point mdctMans Rullgard2011-04-03
| | | | | | | | This makes the AC3 encoder use the shared fixed-point MDCT rather than its own implementation. The checksum changes are due to different rounding in the MDCT. Signed-off-by: Mans Rullgard <mans@mansr.com>
* lavfi: add fade filterBrandon Mintern2011-04-03
| | | | | | | | Port fade filter from libavfilter soc repo, with minor fixes by Stefano. Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Change yadif to not use out of picture lines.Michael Niedermayer2011-04-03
| | | | | | | Fixes issue2272. Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavc: deprecate AVCodecContext.antialias_algoAnton Khirnov2011-04-03
| | | | It's been unused since mp3float decoder was added.
* lavc: mark mb_qmin/mb_qmax for removal on next major bump.Anton Khirnov2011-04-03
| | | | They've been unused and deprecated for about five years.
* Fixed-point MDCT with 32-bit unscaled outputMans Rullgard2011-04-02
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* lavc: deprecate rate_emuAnton Khirnov2011-04-02
| | | | It's not used anywhere and apparrently hasn't been for a very long time.
* lavc: mark hurry_up for removal on next major bumpAnton Khirnov2011-04-02
| | | | | It has been deprecated for about five years, skip_idct/skip_frame should be used instead.
* parser: mark av_parser_parse() for removal on next major bumpAnton Khirnov2011-04-02
| | | | | Fixes build with the bump, since the prototype is already marked for removal.
* lavc: add missing audioconvert includesAnton Khirnov2011-04-02
|
* jvdec: don't use deprecated CODEC_TYPE_*/PKT_FLAG_KEYAnton Khirnov2011-04-02
|
* ac3enc: ARM optimised ac3_compute_matissa_sizeMans Rullgard2011-04-01
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* ac3: armv6 optimised bit_alloc_calc_bapMans Rullgard2011-04-01
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: simplify fft test rulesMans Rullgard2011-04-01
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* avio: document avio_alloc_context.Anton Khirnov2011-04-01
|
* lavf: make compute_chapters_end less picky.Anton Khirnov2011-04-01
| | | | | | | | | | | | In particular, now it assumes that a) chapters are chronologically ordered b) chapters have the same timebases c) duration of the stream is known and asserts if any of these is not met. Make it properly deal with harsher conditions. fixes issue2320
* sierravmd: fix Indeo3 videosMatthew Hoops2011-04-01
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* FFT: simplify fft8()Mans Rullgard2011-04-01
| | | | | | | Part of the fft8() function corresponds to the BUTTERFLIES macro, so use it. Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: add fixed-point fft/mdct testsMans Rullgard2011-04-01
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Fixed-point support in fft-testMans Rullgard2011-04-01
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* ape: check that number of seektable entries is equal to number of framesKostya Shishkov2011-04-01
| | | | | | fixes issue2480 Signed-off-by: Anton Khirnov <anton@khirnov.net>
* mpegts: propagate avio EOF in read_packet()Jindrich Makovicka2011-03-31
| | | | | | | Allows distinguishing between EOF and IO error in read_packet return code. Signed-off-by: Jindrich Makovicka <makovick@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* configure: Initial support for --target-os=symbianMartin Storsjö2011-03-31
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* Fixed-point FFT and MDCTMans Rullgard2011-03-31
|
* Include dependencies for test programsMans Rullgard2011-03-31
| | | | | | | This makes sure the various *-test programs are correctly rebuilt when necessary. Signed-off-by: Mans Rullgard <mans@mansr.com>
* ac3enc: simplify sym_quant()Mans Rullgard2011-03-31
| | | | | | | These expressions are equivalent since levels is always odd, and overflow is impossible due to the constraints set by the assert(). Signed-off-by: Mans Rullgard <mans@mansr.com>
* flvdec: read index stored in the 'keyframes' tag.Kharkov Alexander2011-03-31
| | | | | | | | | | | | | | | | 'keyframes' metatag is not part of the standard, it is just convention to use such kind of metatag information for indexing. Structure is following, it allows to have it inconsistent: keyframes: times (array): time0 (num) time1 (num) time2 (num) filepositions (array) position0 (num) position1 (num) Signed-off-by: Anton Khirnov <anton@khirnov.net>