summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Accept RTMP packets with one-byte headerKostya Shishkov2009-10-18
| | | | Originally committed as revision 20269 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Last parameter in RTMP "play" call was optional and some servers seem not toKostya Shishkov2009-10-18
| | | | | | understand it, so drop it. Originally committed as revision 20268 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary entries in ff_vorbiscomment_metadata_conv. VorbisCommentJustin Ruggles2009-10-17
| | | | | | keys are case-insensitive. Originally committed as revision 20267 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move autocorrelation function from flacenc.c to lpc.c. Also rename theJustin Ruggles2009-10-17
| | | | | | | | corresponding dsputil functions and remove their dependency on the FLAC encoder. Fixes Issue1486. Originally committed as revision 20266 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid segfault for empty input filesVitor Sessak2009-10-17
| | | | Originally committed as revision 20265 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r20249, it seems the union trick works everywhereMichael Niedermayer2009-10-17
| | | | | | | | | | Original commit message: Very evil missuse of svn to test if AVOption and AVOption2 are compatible. If this test triggers anywhere for anyone, revert this commit immedeatly. Ill revert this in a day or 2, its just so we know beforehand if the idea with the union is doable or not without breaking ABI/API. Originally committed as revision 20264 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove extraneous const keywordMåns Rullgård2009-10-17
| | | | Originally committed as revision 20263 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Emit the SDP lines in the correct orderLuca Abeni2009-10-17
| | | | Originally committed as revision 20262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alacenc : use private compression_level value consistently.Jai Menon2009-10-17
| | | | Originally committed as revision 20261 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove a meaningless 'inline' from add_hfyu_left_prediction_bgr32_c().Alexander Strange2009-10-16
| | | | Originally committed as revision 20260 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Huffyuv: Add missing const to src pointers in dsputil functions.Alexander Strange2009-10-16
| | | | Originally committed as revision 20259 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Huffyuv: Remove unnecessary allocation in alloc_temp().Alexander Strange2009-10-16
| | | | | | RGB only needs one temp array. Originally committed as revision 20258 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Huffyuv: Fix a valgrind warning in get_vlc2().Alexander Strange2009-10-16
| | | | | | The padding in bitstream_buffer wasn't initialized. Originally committed as revision 20257 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alacenc : Move some code around for clarity.Jai Menon2009-10-16
| | | | Originally committed as revision 20256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlp: Indent.Ramiro Polla2009-10-16
| | | | Originally committed as revision 20255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlp: Only initialize VLC tables once. This caused a crash when multipleRamiro Polla2009-10-16
| | | | | | | instances of the decoder were started at different times. Bug reported by Maxim Anisiutkin. Originally committed as revision 20254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlp: Use smaller CRC tables if CONFIG_SMALL.Reimar Döffinger2009-10-16
| | | | | | Patch by Reimar. Originally committed as revision 20253 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not try to free memory that was never allocated (partial revert of r20231).Carl Eugen Hoyos2009-10-16
| | | | Originally committed as revision 20252 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Release unreleased buffers found by make test.Carl Eugen Hoyos2009-10-16
| | | | Originally committed as revision 20251 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVCodecTag.id enum CodecID and use CODEC_ID_NONE instead of 0.Carl Eugen Hoyos2009-10-16
| | | | Originally committed as revision 20250 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Very evil missuse of svn to test if AVOption and AVOption2 are compatible.Michael Niedermayer2009-10-16
| | | | | | | | If this test triggers anywhere for anyone, revert this commit immedeatly. Ill revert this in a day or 2, its just so we know beforehand if the idea with the union is doable or not without breaking ABI/API. Originally committed as revision 20249 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an experimental AVOption2 that uses an union instead of double for ↵Michael Niedermayer2009-10-16
| | | | | | default_val. Originally committed as revision 20248 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Log a clearer warning message when muxing FLV with Speex containing more thanJustin Ruggles2009-10-16
| | | | | | 8 frames per packet. Originally committed as revision 20247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split parts of dvdata.h into dvdata.c, this ensures that things likeReimar Döffinger2009-10-16
| | | | | | | | work_chunks_* and dv_idct_factor_* variables appear only once in the binary instead of 3 times. Saves 3264 bytes in .rodata and 312416 bytes in .bss on x86_64. Originally committed as revision 20246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Speex support to the FLV muxer.Justin Ruggles2009-10-16
| | | | Originally committed as revision 20245 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for hardcoded ff_sin_* tables.Reimar Döffinger2009-10-15
| | | | Originally committed as revision 20244 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move/add COSTABLE/SINTABLE macros to dsputil to add extern definitionsReimar Döffinger2009-10-15
| | | | | | for ff_cos_* and ff_sin_* without introducing too much code duplication. Originally committed as revision 20243 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove silly casts to the same type as we already have.Reimar Döffinger2009-10-15
| | | | Originally committed as revision 20242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing release_buffer at decode end for asv1 decoder.Reimar Döffinger2009-10-15
| | | | Originally committed as revision 20241 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Partially revert r20233, exp2f is not available on some BSDs, DOS and AVR32.Reimar Döffinger2009-10-15
| | | | Originally committed as revision 20240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Raise MAX_THREADS to 16.Frank Barchard2009-10-15
| | | | | | Patch by Frank Barchard, fbarchard google com Originally committed as revision 20239 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip padding bytes correctly in ID3 tags.Jai Menon2009-10-15
| | | | | | This fixes a regression introduced in r20170. Originally committed as revision 20238 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not initialize ff_cos_* tables again in rdft_init, they are alreadyReimar Döffinger2009-10-15
| | | | | | | | initialized by ff_fft_init and using different code can result in slightly different values, in addition it crashes when the tables are hardcoded. On amd64 this slightly changes qdm2 output. Originally committed as revision 20237 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: update Makefile after renameJustin Ruggles2009-10-15
| | | | Originally committed as revision 20236 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename aiff.c to aiffdec.cJustin Ruggles2009-10-15
| | | | Originally committed as revision 20235 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split up the AIFF muxer and demuxer into separate files.Justin Ruggles2009-10-15
| | | | Originally committed as revision 20234 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use cbrtf and exp2f instead of pow to calculate tables for MPEG audio decoding.Reimar Döffinger2009-10-15
| | | | | | | This hopefully is fast enough so that it is reasonable to use the same formula directly instead of the table for CONFIG_SMALL. Originally committed as revision 20233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use hardcoded instead of runtime-calculated ff_cos_* tables ifReimar Döffinger2009-10-14
| | | | | | | --enable-hardcoded-tables was used. Due to the size, the code for the tables is generated at compile time. Originally committed as revision 20232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Release frame after decoding is doneKostya Shishkov2009-10-14
| | | | Originally committed as revision 20231 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print a warning message when avcodec_default_free_buffers finds unreleasedReimar Döffinger2009-10-13
| | | | | | | buffers, this hopefully should help detect codecs that do not release all buffers e.g. in the decode_end function. Originally committed as revision 20230 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary calls to avcodec_check_dimensions, the check is alreadyReimar Döffinger2009-10-13
| | | | | | done at a higher level. Originally committed as revision 20229 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Call release_buffer on close for v210dec and v210xReimar Döffinger2009-10-13
| | | | Originally committed as revision 20228 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing release_buffer on closeReimar Döffinger2009-10-13
| | | | Originally committed as revision 20227 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add decoder for "forward uncompressed".Reimar Döffinger2009-10-13
| | | | | | Fixes issue 1467. Originally committed as revision 20226 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement execute2 for w32threadReimar Döffinger2009-10-13
| | | | Originally committed as revision 20225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix w32thread implementation to handle job count > thread_count.Reimar Döffinger2009-10-13
| | | | Originally committed as revision 20224 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fft_dispatch array should be constReimar Döffinger2009-10-13
| | | | Originally committed as revision 20223 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify: use FFSWAPReimar Döffinger2009-10-13
| | | | Originally committed as revision 20222 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MXF: simply ignore tracks that are invalid due to not having a valid SequenceReimar Döffinger2009-10-13
| | | | | | | part instead of failing completely. This partly fixes issue 1470 (broken files created by BBC ingex recorder). Originally committed as revision 20221 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Speex support to the Ogg muxer.Justin Ruggles2009-10-13
| | | | Originally committed as revision 20220 to svn://svn.ffmpeg.org/ffmpeg/trunk