summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* 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
* Do not read data past the end of the SSND chunk in the AIFF demuxer.Justin Ruggles2009-10-13
| | | | | | Fixes Issue 1455. Originally committed as revision 20219 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support Midvid JPEG Video Codec (still flipped).Carl Eugen Hoyos2009-10-12
| | | | Originally committed as revision 20218 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support Intel JPEG Library Video Codec (still flipped).Carl Eugen Hoyos2009-10-12
| | | | Originally committed as revision 20217 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Calculate correct packet durations when demuxing Ogg/Speex. This involvesJustin Ruggles2009-10-12
| | | | | | | determining if there is any delay in the first packet and/or any truncation in the final packet. Originally committed as revision 20216 to svn://svn.ffmpeg.org/ffmpeg/trunk
* extend description of avcodec_decode_audio3:Sascha Sommer2009-10-12
| | | | | | | | - clarify when 0 is returned - explain that decode_audio3 has to be called multiple times when there are multiple frames in a single packet Originally committed as revision 20215 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge declaration and initializationReimar Döffinger2009-10-12
| | | | Originally committed as revision 20214 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify: use FFMINReimar Döffinger2009-10-12
| | | | Originally committed as revision 20213 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after removing the outer for loops in the execute2 patchReimar Döffinger2009-10-12
| | | | Originally committed as revision 20212 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move dnxhdenc to execute2 multithreading API.Reimar Döffinger2009-10-12
| | | | | | | This allows for some simplifications like removing some outer loops and gives much better performance for thread_count > number of idle CPUs. Originally committed as revision 20211 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an execute2 function that is more flexible and allows to use parallelReimar Döffinger2009-10-12
| | | | | | | | processing with jobs > threads without wasting too much memory. It also avoids needing a separate int array when the only additional data the jobs needs is a single int running from 0 to count-1. Originally committed as revision 20210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Detect Windows Media DRM protected files and display warning if no keyDaniel G. Taylor2009-10-11
| | | | | | | | was provided. Patch by Daniel G. Taylor, dan programmer-art org Originally committed as revision 20209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: align stack in NEON h264 mc functionsMåns Rullgård2009-10-11
| | | | | | | A certain rotten fruit operating system doesn't provide the 8-byte stack alignment required by the standard ARM ABI, so align it manually. Originally committed as revision 20208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: force PIC for shared libs only with ARMv6T2 and laterMåns Rullgård2009-10-11
| | | | Originally committed as revision 20207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow autodetection of E-AC3.Carl Eugen Hoyos2009-10-11
| | | | Originally committed as revision 20206 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do the dnxhd_720p_rd test with -threads 4 in order to also test the ↵Reimar Döffinger2009-10-11
| | | | | | threading code. Originally committed as revision 20205 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: simplify movrel definition as CONFIG_PIC is now set for shared libsMåns Rullgård2009-10-11
| | | | Originally committed as revision 20204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: enable PIC for shared libsMåns Rullgård2009-10-11
| | | | | | | | | Recent versions of gcc generate movw/movt pairs, and the linkers fail to handle the associated relocations properly. Those responsible at Codesourcery have refused to consider fixing this. Blame them for making shared libraries slower than they need to be. Originally committed as revision 20203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l in avpicture_layout: width of chroma planes depends on format depth, too.Reimar Döffinger2009-10-11
| | | | | | Fixes issue 1465 Originally committed as revision 20202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Warn when WVC1 cannot be decodedKostya Shishkov2009-10-11
| | | | Originally committed as revision 20201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow demuxing of E-AC3 (stream type 0x84) in MPEG-TS.Carl Eugen Hoyos2009-10-10
| | | | Originally committed as revision 20200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Hack: set the coded frame PTS to the incoming PTS.Reimar Döffinger2009-10-10
| | | | | | | | | | This is not correct, but libtheora does not seem to provide a way to get the correct value, and this is necessary to make encoding produce sensible time stamps when encoded content is variable FPS or the time base is simply different from FPS. Somewhat fixes issue 1197. Originally committed as revision 20199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document the additon of the w and h fields to AVFilterPic.Stefano Sabatini2009-10-10
| | | | Originally committed as revision 20198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix 100l incorrect bitmask check.Reimar Döffinger2009-10-10
| | | | Originally committed as revision 20197 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print error message when true interlaced VC-1 frames are encounteredKostya Shishkov2009-10-10
| | | | | | to inform user why decoder produces no output. Originally committed as revision 20196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not allow 0 sample rate in TMV demuxerDaniel Verkamp2009-10-09
| | | | Originally committed as revision 20195 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Stricter TMV probeDaniel Verkamp2009-10-09
| | | | Originally committed as revision 20194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: Fix regression introduced in r20067 where ADTS files would always beRobert Swain2009-10-09
| | | | | | | signalled as having a channel configuration of 1 in output_configure(). Previously this didn't matter but it does now. Originally committed as revision 20193 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dca and aac decoders use float_to_int16_interleave, so check forDavid Conrad2009-10-08
| | | | | | | the C version of that rather than float_to_int16. Fixes output on ARM/VFP Originally committed as revision 20192 to svn://svn.ffmpeg.org/ffmpeg/trunk