aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ac3enc: avoid memcpy() of exponents and baps in EXP_REUSE case by usingJustin Ruggles2011-03-281-17/+17
| | | | exponent reference blocks.
* Chronomaster DFA decoderKostya Shishkov2011-03-2811-2/+526
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* framebuffer device demuxerStefano Sabatini2011-03-287-1/+281
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* cosmetics: fix dashed line length after 070c5d0Janne Grunau2011-03-282-2/+2
|
* http: header field names are case insensitiveTyler2011-03-281-7/+7
| | | | | | | | | Amazon S3 sends header field names all lowercase. This is actually acceptable according to the HTTP standard. http://tools.ietf.org/html/rfc2616#section-4.2 Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* ac3enc: Add codec-specific options for writing AC-3 metadata.Justin Ruggles2011-03-276-18/+782
|
* Remove arrozcru URL from documentationRamiro Polla2011-03-272-8/+0
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* sndio support for playback and recordBrad2011-03-2711-2/+403
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* dsputil: allow to skip drawing of top/bottom edges.Alexander Strange2011-03-265-52/+70
|
* Split fate-psx-str-v3 into a video-only and audio-only test.Ronald S. Bultje2011-03-263-39/+41
|
* mov: set audio service type for AC-3 from bitstream mode in the 'dac3' atom.Justin Ruggles2011-03-251-1/+5
|
* Get audio_service_type for AC-3 based on bitstream mode in the AC-3 parserJustin Ruggles2011-03-258-3/+29
| | | | and decoder, and vice-versa for the AC-3 encoder.
* Use audio_service_type to set stream disposition.Justin Ruggles2011-03-251-0/+13
|
* Add APIchanges entry for audio_service_type.Justin Ruggles2011-03-251-0/+3
|
* Add audio_service_type field to AVCodecContext for encoding and reportingJustin Ruggles2011-03-255-1/+54
| | | | of the service type in the audio bitstream.
* configure: in check_ld, place new -l flags before existing onesMans Rullgard2011-03-251-1/+1
| | | | | | This fixes some library tests when --as-needed is in effect. Signed-off-by: Mans Rullgard <mans@mansr.com>
* support @heading, @subheading, @subsubheading, and @subsubsection inJustin Ruggles2011-03-251-2/+4
| | | | texi2pod.pl
* doc: update build system documentationLuca Barbato2011-03-252-25/+63
| | | | | | | Split normal build system documentation and the fate one. Document THREADS make variable and provide an introduction to fate. Document DESTDIR make variable and add some generic targets.
* aacenc: indentationYoung Han Lee2011-03-241-1/+1
|
* aacenc: fix the side calculation in search_for_msYoung Han Lee2011-03-241-1/+1
|
* vp8.c: rename EDGE_* to VP8_EDGE_*.Alexander Strange2011-03-241-5/+5
|
* matroskadec: set default duration for simple blockJohn Stebbins2011-03-251-0/+2
| | | | | | | | | | | When a normal Block is parsed, duration is initialized to AV_NOPTS_VALUE. If it is not changed, then the track's default duration is used. But for SimpleBlock, duration is initialized to 0 instead of AV_NOPTS_VALUE. This is due to the difference in how EBML_NEST vs EBML_PASS are processed. Setting duration to 0 leads eventually to wrongly estimate the frame duration in util.c Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* When building for MinGW32 disable strict ANSI compliancy.Diego Elio Pettenò2011-03-241-0/+1
| | | | | | | | When -std=c99 is used, GCC defines __STRICT_ANSI__ to hide non-ANSI interfaces; on MinGW32, when this macro is defined, some functions that are part of POSIX but not of Windows APIs are disabled, including strcasecmp(). Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* ARM: fix ff_apply_window_int16_neon() prototypeMans Rullgard2011-03-241-1/+1
| | | | | | The length argument should be unsigned. No change in code. Signed-off-by: Mans Rullgard <mans@mansr.com>
* configure: check for --as-needed support earlyMans Rullgard2011-03-241-1/+2
| | | | | | | | This moves the check for --as-needed linker support before all library tests, ensuring consistent behaviour between the checks and the actual link step. Signed-off-by: Mans Rullgard <mans@mansr.com>
* ARM: NEON optimised apply_window_int16()Mans Rullgard2011-03-242-0/+28
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* ac3enc: NEON optimised shift functionsMans Rullgard2011-03-242-0/+25
|
* ac3enc: NEON optimised ac3_max_msb_abs_int16 and ac3_exponent_minMans Rullgard2011-03-245-0/+100
|
* mpeg12.c: fix slice threading for mpeg2 field picture mode.Ronald S. Bultje2011-03-241-1/+13
| | | | Fixes "make THREADS=2 fate-mpeg2-field-enc".
* ffmetadec.c: fix compiler warnings.Ronald S. Bultje2011-03-241-2/+2
|
* configure: Don't explicitly disable ffplay or in/outdevices on dosMartin Storsjö2011-03-241-2/+0
| | | | The normal dependency tracking system disables them just fine.
* configure: Remove the explicit disabling of ffserverMartin Storsjö2011-03-241-2/+1
| | | | | It is automatically disabled on both mingw and dos due to the lack of fork.
* configure: Add fork as a dependency to ffserverMartin Storsjö2011-03-241-1/+1
|
* avio: make udp_set_remote_url/get_local_port internal.Anton Khirnov2011-03-235-13/+19
|
* asfdec: also subtract preroll when reading simple index objectVladimir Pantelic2011-03-231-2/+2
| | | | | | | This was missed when ASF was changed to return timestamps without preroll. Signed-off-by: Mans Rullgard <mans@mansr.com>
* matroskaenc: remove a variable that's unused after bc17bd9.Anton Khirnov2011-03-231-1/+0
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: cosmetics - nicer vertical alignment.Anton Khirnov2011-03-232-2/+2
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Remove unnecessary icc version checksMans Rullgard2011-03-233-5/+5
| | | | | | | | With unknown attribute warnings disabled, these checks are no longer needed. Removing them improves readability while having no effect on generated code. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Disable 'attribute "foo" ignored' warnings from iccMans Rullgard2011-03-231-1/+2
| | | | | | | | ICC lies about the version of gcc it emulates, which results in unsupported attributes sometimes being used. The warning is an annoyance and should be disabled. Signed-off-by: Mans Rullgard <mans@mansr.com>
* rtsp: Don't use a locale dependent format stringMartin Storsjö2011-03-231-2/+1
| | | | | | | In this particular case, we aren't ever printing anything else than 0.000 anyway. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Add xd55 codec tag for XDCAM HD422 720p25 CBR files.Tomas Härdin2011-03-231-0/+1
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* configure: get libavcodec version from new version.h headerMans Rullgard2011-03-231-1/+1
| | | | | | This fixes shared library versioning after 3dd851c. Signed-off-by: Mans Rullgard <mans@mansr.com>
* lavc: move the version macros to a new installed header.Anton Khirnov2011-03-223-52/+77
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* matroskaenc: simplify get_aac_sample_rates by using ff_mpeg4audio_get_configAnton Khirnov2011-03-221-18/+5
| | | | | | | This also fixes broken SBR detection, which produced files with double sample rate since 8ae0fa2. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Do not use format string "%0.3f" for RTSP Range field.Carl Eugen Hoyos2011-03-221-2/+3
| | | | | | The format string was locale-depending. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Add apply_window_int16() to DSPContext with x86-optimized versions and use itJustin Ruggles2011-03-2211-36/+210
| | | | in the ac3_fixed encoder.
* Document usage of import libraries created by dlltoolMartin Storsjö2011-03-231-0/+6
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* configure: Set the correct lib target for arm/wince dlltoolMartin Storsjö2011-03-231-1/+1
| | | | | | The correct machine name for dlltool is arm-wince. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* fate: simplify regression-funcs.shLuca Barbato2011-03-231-8/+4
| | | | Factor ffmpeg calls using run_ffmpeg()
* fate: add support for multithread testingLuca Barbato2011-03-233-4/+6
| | | | Add a THREADS variable to fate calls.