summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* x86: Make function prototype comments in assembly code consistentDiego Biurrun2014-03-13
| | | | This helps grepping for functions, among other things.
* x86: h264_idct_10_bit: Use proper type in function prototype commentsDiego Biurrun2014-03-13
|
* Update dsputil- and SIMD-related comments to match reality more closelyDiego Biurrun2014-03-13
|
* arm: dsputil: Add a bunch of missing #includesDiego Biurrun2014-03-13
|
* x86: Add some more missing headersDiego Biurrun2014-03-13
|
* ppc: Add some missing headersDiego Biurrun2014-03-13
|
* dsputil: Move intreadwrite.h #include from header file to .c filesDiego Biurrun2014-03-13
|
* dsputil: Drop ff_check_alignment() functionDiego Biurrun2014-03-13
| | | | | | The function is supposed to confirm that the compiler provided enough alignment, but in practice it is only run in certain code paths and insufficient alignment problems are restricted to legacy compilers.
* dsputil: Remove prototypes for nonexisting optimization functionsDiego Biurrun2014-03-13
|
* x86: mpegvideoenc: Remove some remnants of the long-gone libmpeg2 IDCTDiego Biurrun2014-03-13
|
* Remove all SPARC architecture optimizationsDiego Biurrun2014-03-13
| | | | | SPARC is no longer being used in any multimedia-related fields and the VIS optimizations only represent a maintenance burden.
* Remove all SH4 architecture optimizationsDiego Biurrun2014-03-13
| | | | SH4 has been end-of-lifed and no more test machines are available.
* build: Record dependency of eatqi decoder on dsputilDiego Biurrun2014-03-13
|
* configure: Add explicit dsputil dependency to mpegvideoencDiego Biurrun2014-03-13
| | | | | Previously, it was an implicit dependency through mpegvideo. Change this, as implicit dependencies can cause all sorts of trouble.
* ffv1: Drop bogus dependency on dsputilDiego Biurrun2014-03-13
| | | | ffv1 does not use any part of the dsputil framework.
* build: Drop stray LPC dependency on dsputilDiego Biurrun2014-03-13
|
* build: Drop stray MJPEG encoder dependency on dsputilDiego Biurrun2014-03-13
|
* build: Drop stray MLP decoder dependency on dsputilDiego Biurrun2014-03-13
|
* build: Drop stray PNG decoder dependency on dsputilDiego Biurrun2014-03-13
|
* build: Drop stray mpc8 decoder dependency on dsputilDiego Biurrun2014-03-13
|
* Prepare for 11_alpha1 ReleaseReinhard Tartler2014-03-13
|
* avconv: Match stream idLuca Barbato2014-03-13
| | | | Quite useful to select by pid in MPEG-TS.
* http: Properly initialize icy headers stringAlessandro Ghedini2014-03-12
| | | | | | | | | | | | | | The icy_metadata_headers string never gets initialized, so, during the first call to av_strlcatf() in parse_icy(), strlen() will be called on a pointer to uninitialized memory. At best this causes some garbage data to be left at the start of the string. By initializing icy_metadata_headers to the empty string, the first call to strlen() will always return 0, so that data is appended from the start of the string. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* doc: Point to the correct, actually maintained gas-preprocessor repoMartin Storsjö2014-03-12
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* armv6: vp8: use explicit labels in motion compensation asmJanne Grunau2014-03-12
| | | | | The integrated arm assembler in clang-503.0.38 (Xcode-5.1) fails to assemble a branch to 'label + offset' in thumb mode.
* configure: Support older version of openjpeg1Luca Barbato2014-03-12
| | | | | It should work best for debian stable and people not installing the .pc file.
* copy_block: K&R formatting cosmeticsVittorio Giovara2014-03-12
|
* configure: Group toolchain options together in help outputDiego Biurrun2014-03-12
|
* http: Declare more parameters as const where possibleMartin Storsjö2014-03-12
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* http: Allow setting a Content-Type for POST requestsClément Bœsch2014-03-11
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* http: Improve options descriptionsAlessandro Ghedini2014-03-11
| | | | | | Add documentation where missing. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* http: Always allow no-op seekAnssi Hannula2014-03-11
| | | | | | This also allows checking stream position as per ffurl_seek() doxy. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* http: Add support for selecting a request rangeAnssi Hannula2014-03-11
| | | | | | Comment from Reimar Döffinger included as pro memoria. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* http: Support setting custom User-AgentClément Bœsch2014-03-11
| | | | | | | Contextually make the default User-Agent use the common "Name/Version" pattern. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* http: Export Content-Type informationMichael Niedermayer2014-03-11
| | | | | | Bug-Id: https://bugs.debian.org/740421 Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* http: Add support reading ICY metadataLuca Barbato2014-03-11
| | | | | | | | | Export the metadata as a icy_metadata_packet avoption. Based on the work of wm4 and Alessandro Ghedini. Bug-Id: https://bugs.debian.org/739936 Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* http: Refactor process_lineLuca Barbato2014-03-11
|
* http: K&R formatting cosmeticsLuca Barbato2014-03-11
|
* http: Drop doxy commentsLuca Barbato2014-03-11
|
* http: Return meaningful error codesLuca Barbato2014-03-11
|
* configure: Provide --pkg-config-flagsLuca Barbato2014-03-11
| | | | | | | Should be used only to pass extra flags to pkgconf invocation, e.g. --static. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* avformat: Report the duration analysis reachedLuca Barbato2014-03-11
|
* doc: Add section about AviSynth supportStephen Hutchinson2014-03-11
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* configure: Document --pkg-config optionLuca Barbato2014-03-11
|
* lavf: more correct printf format specifiersDiego Biurrun2014-03-11
|
* configure: miscellaneous cosmeticsDiego Biurrun2014-03-10
| | | | | Sort lists of components. Add some whitespace where it helps readability. Consistently use double instead of single quotes around component lists.
* lavf: always use av_freeMichael Niedermayer2014-03-10
| | | | Signed-off-by: Tim Walker <tdskywalker@gmail.com>
* lavf: simplify ff_hevc_annexb2mp4_bufTim Walker2014-03-10
| | | | | | Use ff_hevc_annexb2mp4 instead of duplicating its functionality, and update the documentation to match the new behavior.
* configure: Use the right pkgconf file for openjpegLuca Barbato2014-03-10
| | | | The current release of version 1 uses libopenjpeg1.
* hevc: Use get_se_golomb_longLuca Barbato2014-03-10
| | | | | Do not use inline functions that refer to tables present in other libraries.