aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* swscale: cosmetics.Ronald S. Bultje2011-06-071-2/+1
|
* swscale: remove alp/chr/lumSrcOffset.Ronald S. Bultje2011-06-072-129/+76
| | | | | | | They are hacks added to reuse the same scaling function for different formats and they may cause problems when SIMD implementation of the same functions are used along with pure C functions.
* swscale: un-special-case yuv2yuvX16_c().Ronald S. Bultje2011-06-073-30/+44
| | | | | Make yuv2yuvX16_c a function pointer for yuv2yuvX(), so that the function pointer becomes bitdepth-independent.
* shorten: Remove stray DEBUG #define and corresponding av_dlog statement.Diego Biurrun2011-06-071-2/+0
|
* vorbisdec: Restore mistakenly removed debug output.Diego Biurrun2011-06-071-0/+4
|
* configure: Document --enable-vdpau.Diego Biurrun2011-06-071-1/+1
| | | | The option is disabled by default, so enabling it should be documented.
* Replace some av_log/printf + #ifdef combinations by av_dlog.Diego Biurrun2011-06-076-96/+37
|
* Replace some nonstandard DEBUG_* preprocessor directives by plain DEBUG.Diego Biurrun2011-06-074-17/+5
|
* svq1dec: Fix debug statements that referenced non-existing context.Diego Biurrun2011-06-071-2/+2
|
* Replace some printf instances in debug code by av_log.Diego Biurrun2011-06-072-4/+5
|
* inverse.c: Replace unnecessary intmath.h header by necessary stdint.h.Diego Biurrun2011-06-071-1/+1
|
* Drop unnecessary directory prefixes from #include directives.Diego Biurrun2011-06-0711-16/+18
|
* build: remove empty $(OBJS) targetMans Rullgard2011-06-071-2/+0
| | | | | | | | This target was added to prevent some files being deleted by make when using chains of implicit rules. This is no longer required. Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: make rule for linking ff* apply only to these targetsMans Rullgard2011-06-071-1/+1
| | | | | | | This ensures that the special link command using cmdutils.o only applies to the targets it should. Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: rearrange some lines in a more logical wayMans Rullgard2011-06-061-4/+3
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* s302m: fix resampling for 16 and 24bits.Baptiste Coudurier2011-06-061-2/+2
|
* ARM: remove MUL64 and MAC64 inline asmMans Rullgard2011-06-061-30/+1
| | | | | | | | | | | | | Current GCC versions know how to generate these instructions properly and avoiding inline asm gives better code. The MULH function for ARMv5 uses the same instruction and is also not needed any more. The MLS64 macro remains since negating an input would normally not be allowed as it would fail for INT_MIN. In our uses, the inputs never have this value and thus negating is safe. Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: clean up .PHONY listsMans Rullgard2011-06-062-3/+2
| | | | | | | This removes nonexisting targets from phony lists and puts them all in one place. Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: move all (un)install* target aliases to toplevel MakefileMans Rullgard2011-06-062-7/+4
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* flvenc: propagate error properlyLuca Barbato2011-06-061-1/+1
| | | | | avio_flush can fail, in particular when used with the rtmp/librtmp protocol.
* build: remove stale dependencyMans Rullgard2011-06-061-2/+0
| | | | | | This dependency is implicitly covered elsewhere. Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: do not add CFLAGS-yes to CFLAGSMans Rullgard2011-06-061-1/+0
| | | | | | CFLAGS-yes is never set so this serves no purpose. Signed-off-by: Mans Rullgard <mans@mansr.com>
* utils.c: fix crash with threading enabled.Ronald S. Bultje2011-06-061-1/+1
|
* configure: simplify source_path setupMans Rullgard2011-06-061-3/+2
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* configure: remove --source-path optionMans Rullgard2011-06-061-2/+0
| | | | | | | This option does not work, and the implied functionality is at best pointless. Signed-off-by: Mans Rullgard <mans@mansr.com>
* lavf: deprecate AVFormatParameters.time_base.Anton Khirnov2011-06-061-1/+1
|
* img2: add framerate private option.Anton Khirnov2011-06-061-5/+10
|
* img2: add video_size private option.Anton Khirnov2011-06-061-4/+16
|
* img2: add pixel_format private option.Anton Khirnov2011-06-061-2/+33
|
* tty: add framerate private option.Anton Khirnov2011-06-061-6/+10
|
* Remove some unused scripts from tools/.Diego Biurrun2011-06-064-43/+0
|
* Add x86 assembly for some 10-bit H.264 intra predict functions.Daniel Kang2011-06-063-5/+396
| | | | | | | Parts are inspired from the 8-bit H.264 predict code in Libav. Other parts ported from x264 with relicensing permission from author. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* v4l2: do not force NTSC as standardLuca Barbato2011-06-051-1/+1
| | | | Setting a standard is meaningful only for analog capture devices.
* Skip tableprint.h during 'make checkheaders'.Diego Biurrun2011-06-051-2/+5
| | | | It is only used on the host and may not compile on the target.
* Remove unnecessary LIBAVFORMAT_BUILD #ifdef.Diego Biurrun2011-06-051-2/+0
|
* Drop explicit filenames from @file Doxygen tags.Diego Biurrun2011-06-053-3/+3
| | | | The filename is unnecessary and brittle across file renames.
* Skip generated table headers during 'make checkheaders'.Diego Biurrun2011-06-051-2/+3
|
* lavf,lavc: free avoptions in a generic way.Anton Khirnov2011-06-0510-21/+9
| | | | | | It's simpler and less error-prone. Fixes some memleaks along the way.
* AVOptions: add av_opt_free convenience function.Anton Khirnov2011-06-054-1/+17
|
* tableprint: Restore mistakenly deleted common.h #include for FF_ARRAY_ELEMS.Diego Biurrun2011-06-051-0/+2
| | | | | | This fixes the build with hardcoded tables enabled. Signed-off-by: Mans Rullgard <mans@mansr.com>
* tiff: print log in case of unknown / unsupported tag.Stefano Sabatini2011-06-051-0/+2
| | | | | | Helps debugging. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* tiff: fix linesize for mono-white/black formats.Stefano Sabatini2011-06-051-1/+1
| | | | | | Fix decoding of file Test_1bpp.tif Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Fix build of eval-test programMans Rullgard2011-06-052-2/+2
| | | | | | eval.c has moved to libavutil, move the TESTPROGS entry too. Signed-off-by: Mans Rullgard <mans@mansr.com>
* configure: Document --enable-vaapiRobert Swain2011-06-051-1/+1
| | | | | | | VAAPI is disabled by default so it should have a --enable-vaapi option documented, not a --disable-vaapi. Signed-off-by: Mans Rullgard <mans@mansr.com>
* ac3enc: extract all exponents for the frame at onceJustin Ruggles2011-06-041-8/+4
|
* ARM: remove MULL inline asmMans Rullgard2011-06-041-12/+0
| | | | | | Reasonable gcc versions get this one right on their own. Signed-off-by: Mans Rullgard <mans@mansr.com>
* mathops: use MUL64 macro where it forms part of other opsMans Rullgard2011-06-041-6/+6
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* tty: factorise returning error codes.Anton Khirnov2011-06-041-11/+12
|
* rawdec: add framerate private option.Anton Khirnov2011-06-043-19/+35
|
* x11grab: add framerate private option.Anton Khirnov2011-06-041-10/+14
|