Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | H.264: Add x86 assembly for 10-bit H.264 predict functions | Daniel Kang | 2011-07-08 | 4 | -1/+998 |
| | | | | | | | | Mainly ported from 8-bit H.264 predict. Some code ported from x264. LGPL ok by author. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | swscale: rename uv_off/uv_off2 to uv_off_px/byte. | Ronald S. Bultje | 2011-07-08 | 3 | -46/+46 |
| | |||||
* | swscale: implement error dithering in planarCopyWrapper. | Ronald S. Bultje | 2011-07-08 | 1 | -19/+90 |
| | | | | Based on a somewhat similar idea in FFmpeg's swscale. | ||||
* | swscale: error dithering for 16/9/10-bit to 8-bit. | Ronald S. Bultje | 2011-07-08 | 3 | -30/+160 |
| | | | | Based on a somewhat similar idea in FFmpeg's swscale copy. | ||||
* | swscale: fix overflow in 16-bit vertical scaling. | Ronald S. Bultje | 2011-07-08 | 8 | -41/+41 |
| | | | | | | We operated on 31-bits, but with e.g. lanczos scaling, values can add up to beyond 0x80000000, thus leading to output of zeroes. Drop one bit of precision fixes this. | ||||
* | swscale: fix crash in 8-bpc bilinear output without alpha. | Ronald S. Bultje | 2011-07-08 | 1 | -1/+2 |
| | | | | | We accessed the alpha array even it wasn't used and didn't exist, hence leading to a NULL pointer segfault. | ||||
* | swscale: fix 16-bit horizontal scaling underflow. | Ronald S. Bultje | 2011-07-08 | 7 | -23/+23 |
| | | | | | When using e.g. lanczos scaling, values can drop below 0, so they should never be unsigned. | ||||
* | swscale: fix 16-bit scaling when output is 8-bits. | Ronald S. Bultje | 2011-07-08 | 9 | -27/+27 |
| | | | | | We would use the second half of the U plane buffer, rather than the V plane buffer, to output the V plane pixels. | ||||
* | mp3enc: write a xing frame containing number of frames in the file | Anton Khirnov | 2011-07-08 | 2 | -5/+71 |
| | |||||
* | lavf: update AVStream.nb_frames when muxing. | Anton Khirnov | 2011-07-08 | 2 | -1/+8 |
| | |||||
* | ffmpeg: remove unused variables from InputStream. | Anton Khirnov | 2011-07-08 | 1 | -5/+0 |
| | |||||
* | doc: update ffmpeg -ar and -ac documentation to reflect reality. | Anton Khirnov | 2011-07-08 | 1 | -8/+8 |
| | |||||
* | ffmpeg: remove pointless if (nb_input_files) | Anton Khirnov | 2011-07-08 | 1 | -17/+14 |
| | | | | | It's required to be non-zero since cc58300e30e7aea6acfecd72a04a3886b285cfd8 | ||||
* | ffmpeg: merge input_files_ts_offset into input_files. | Anton Khirnov | 2011-07-08 | 1 | -9/+10 |
| | |||||
* | ffmpeg: merge input_codecs into input_streams. | Anton Khirnov | 2011-07-08 | 1 | -10/+7 |
| | | | | There's no point in keeping them separate. | ||||
* | ffmpeg: drop AV prefixes from struct names. | Anton Khirnov | 2011-07-08 | 1 | -54/+54 |
| | | | | Those are reserved for the libs. | ||||
* | ffmpeg: deprecate loop_input and loop_output options | Anton Khirnov | 2011-07-08 | 4 | -7/+15 |
| | | | | They were replaced by (de)muxer private options. | ||||
* | gif: add loop private option. | Anton Khirnov | 2011-07-08 | 3 | -4/+34 |
| | | | | Deprecate AVFormatContext.loop_output. | ||||
* | img2: add loop private option. | Anton Khirnov | 2011-07-08 | 3 | -2/+17 |
| | | | | Deprecate AVFormatContext.loop_input. | ||||
* | AVOptions: in av_opt_find() don't return named constants unless unit is ↵ | Anton Khirnov | 2011-07-08 | 1 | -2/+3 |
| | | | | | | | | | specified. That is, unless the caller explicitly asks for them. Prevents conflict between e.g. the 'loop' option in img2 demuxer and 'loop' flag in AVCodecContext. | ||||
* | x11grab: replace undocumented nomouse hackery with a private option. | Anton Khirnov | 2011-07-08 | 1 | -3/+4 |
| | |||||
* | dict: extend documentation. | Anton Khirnov | 2011-07-08 | 1 | -3/+36 |
| | |||||
* | lls: whitespace cosmetics | Mans Rullgard | 2011-07-08 | 1 | -59/+74 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | docs: Use proper markup for a literal command line option | Martin Storsjö | 2011-07-08 | 1 | -1/+1 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | docs: Remove a remark that isn't relevant any longer | Martin Storsjö | 2011-07-08 | 1 | -4/+1 |
| | | | | | | Now the bin directory only contains those DLLs that are actually used. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | docs: Explain how to regenerate import libraries with MSVC tools | Martin Storsjö | 2011-07-08 | 1 | -0/+28 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | docs: Mention that libraries for MSVC can be built with a cross compiler | Martin Storsjö | 2011-07-08 | 1 | -0/+4 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | docs: Remove old docs that mention setting up a build environment with lib.exe | Martin Storsjö | 2011-07-08 | 1 | -26/+1 |
| | | | | | | | The build system doesn't use lib.exe any longer, and therefore this can be simplified. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | docs: Mention the upstream bugzilla url about the dlltool vs MSVC issue | Martin Storsjö | 2011-07-08 | 1 | -0/+2 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | dnxhd: prettify tables | Mans Rullgard | 2011-07-08 | 1 | -36/+574 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | flashsv: inline copy_region() into flashsv_decode_frame() | Diego Biurrun | 2011-07-08 | 1 | -16/+11 |
| | |||||
* | avutil: Add missing test programs to Makefile. | Diego Biurrun | 2011-07-08 | 1 | -1/+2 |
| | |||||
* | flashsv: improve some variable names | Diego Biurrun | 2011-07-07 | 1 | -7/+7 |
| | |||||
* | libschroedingerdec: Remove write-only variable. | Diego Biurrun | 2011-07-07 | 1 | -2/+0 |
| | | | | libavcodec/libschroedingerdec.c:211:23: warning: variable 'format' set but not used | ||||
* | libavdevice: Remove disabled code. | Diego Biurrun | 2011-07-07 | 2 | -22/+0 |
| | |||||
* | build: remove unused copy regression test script | Diego Biurrun | 2011-07-07 | 2 | -495/+0 |
| | | | | | The copy regression test script is unused, bash-specific and did not even work properly when it was originally committed. | ||||
* | build: clean up library installation rules | Mans Rullgard | 2011-07-07 | 2 | -17/+19 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | vf_drawtext: Remove some write-only variables. | Diego Biurrun | 2011-07-07 | 1 | -15/+2 |
| | | | | | libavfilter/vf_drawtext.c:427:22: warning: variable 'dst_pixel' set but not used libavfilter/vf_drawtext.c:463:22: warning: variable 'dst_pixel' set but not used | ||||
* | libgsm: Drop const qualifier to silence compiler warning. | Diego Biurrun | 2011-07-07 | 1 | -1/+1 |
| | | | | | libavcodec/libgsm.c:148: warning: passing argument 2 of ‘gsm_decode’ discards qualifiers from pointer target type /usr/include/gsm/gsm.h:68: note: expected ‘gsm_byte *’ but argument is of type ‘const uint8_t *’ | ||||
* | docs: Remove needless configure options | Martin Storsjö | 2011-07-07 | 1 | -2/+2 |
| | | | | | | | Specifying --enable-static --disable-shared isn't necessary, these are the defaults. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | docs: Don't recommend adding --enable-memalign-hack | Martin Storsjö | 2011-07-07 | 1 | -3/+3 |
| | | | | | | It is enabled automatically when required nowadays. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | libvo-amrwbenc: Add braces to shut up gcc warning. | Diego Biurrun | 2011-07-07 | 1 | -1/+1 |
| | | | | libavcodec/libvo-amrwbenc.c:37:5: warning: missing braces around initializer | ||||
* | adts: Fix PCE copying. | Alex Converse | 2011-07-06 | 1 | -0/+4 |
| | | | | | | Parse the extension flag bit when reading the MPEG4 AudioSpecificConfig. This has nothing to do with SBR/PS contradictory to what was noted when it was removed. | ||||
* | ffserver: remove unused variable. | Chris Wilson | 2011-07-06 | 1 | -3/+1 |
| | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | Remove unused and outdated TODO file. | Diego Biurrun | 2011-07-06 | 1 | -82/+0 |
| | |||||
* | gitignore: Drop individual .d ignore; it is already covered by a wildcard. | Diego Biurrun | 2011-07-06 | 1 | -1/+0 |
| | |||||
* | lavf: deprecate AVStream.quality. | Anton Khirnov | 2011-07-06 | 6 | -11/+15 |
| | | | | AVStream is no place for it and it's unused outside of ffmpeg anyway. | ||||
* | bink: pass Bink version to audio decoder through extradata instead of codec_tag. | Kostya | 2011-07-06 | 2 | -2/+7 |
| | | | | | | | This is needed because not all players (e.g. MPlayer) are able to distinguish two different Bink audio decoders when codec_tag is set. Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | libpostproc: Remove disabled code. | Diego Biurrun | 2011-07-06 | 1 | -32/+0 |
| | |||||
* | flashsv: improve some comments and fix some wrong ones | Diego Biurrun | 2011-07-06 | 1 | -6/+6 |
| |