summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* simplify pcm read seek, use av_get_bits_per_sampleBaptiste Coudurier2006-10-18
| | | | Originally committed as revision 6728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't run libavtest if CONFIG_GPL is not set.Diego Biurrun2006-10-18
| | | | Originally committed as revision 6727 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Kill a warning with MSVCJindřich Makovička2006-10-18
| | | | | | | | | Patch by Jindrich Makovicka makovick A gmail P com Original thread: Date: 08:21 AM Subject Re: [Ffmpeg-devel] Weird line in cabac.h Originally committed as revision 6726 to svn://svn.ffmpeg.org/ffmpeg/trunk
* copy cabac context onto the stack for the c code in decode_cabac_residual() ↵Michael Niedermayer2006-10-17
| | | | | | (15% faster on P3 but still slower then the current asm) Originally committed as revision 6725 to svn://svn.ffmpeg.org/ffmpeg/trunk
* x86 asm version of the decode significance loop (not 8x8) of ↵Michael Niedermayer2006-10-17
| | | | | | decode_residual() 5% faster decode_residual() on P3 Originally committed as revision 6724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid overwriting pktBaptiste Coudurier2006-10-17
| | | | Originally committed as revision 6723 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l inverted condition check generated an endless loopAurelien Jacobs2006-10-17
| | | | Originally committed as revision 6722 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skip packet if no stream index is found, fix proxy_pal030926.mxfBaptiste Coudurier2006-10-17
| | | | Originally committed as revision 6721 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skip run in sequence, fix C0023S01.mxfBaptiste Coudurier2006-10-17
| | | | Originally committed as revision 6720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename --cpu (and related variables) to --arch as this option alwaysGuillaume Poirier2006-10-17
| | | | | | allowed to select an architecture, not a specific cpu Originally committed as revision 6719 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement sws_getCachedContext() in swscale emulationLuca Abeni2006-10-17
| | | | Originally committed as revision 6718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic (%%eax->%0)Michael Niedermayer2006-10-17
| | | | Originally committed as revision 6717 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Simplifying the setting of STYPE for AAUX ASRoman Shaposhnik2006-10-16
| | | | | | * Fixing a bug in how SPEED was encoded for AAUX ASC Originally committed as revision 6716 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix crash with illegal instruction, cmov is available on 686 and later only.Diego Biurrun2006-10-16
| | | | Originally committed as revision 6715 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Expand some #endif comments.Diego Biurrun2006-10-16
| | | | Originally committed as revision 6714 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix -a^b which was interpreted as (-a)^bMichael Niedermayer2006-10-16
| | | | Originally committed as revision 6713 to svn://svn.ffmpeg.org/ffmpeg/trunk
* asin() acos() atan()Michael Niedermayer2006-10-16
| | | | Originally committed as revision 6712 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffmpeg work with x264 r592Luca Barbato2006-10-16
| | | | Originally committed as revision 6711 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mod()Michael Niedermayer2006-10-16
| | | | Originally committed as revision 6710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix #endif comments.Diego Biurrun2006-10-16
| | | | Originally committed as revision 6709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace FLAC FourCC by TwoCC.Diego Biurrun2006-10-16
| | | | Originally committed as revision 6708 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix !CMOV_IS_FAST case (iam not really happy with the fix but i didnt come ↵Michael Niedermayer2006-10-16
| | | | | | up with a better one quickly) Originally committed as revision 6707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add libswscale to the include path when enabled.Diego Biurrun2006-10-16
| | | | Originally committed as revision 6706 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't mix declarations and statements.Diego Biurrun2006-10-16
| | | | Originally committed as revision 6705 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lMichael Niedermayer2006-10-15
| | | | Originally committed as revision 6704 to svn://svn.ffmpeg.org/ffmpeg/trunk
* this code will not work with PIC as it needs 7 registers and gcc doesnt ↵Michael Niedermayer2006-10-15
| | | | | | support that in PIC Originally committed as revision 6703 to svn://svn.ffmpeg.org/ffmpeg/trunk
* shift CABACContext.range right, this reduces the number of shifts needed in ↵Michael Niedermayer2006-10-15
| | | | | | get_cabac() and is slightly faster on P3 (and should be much faster on P4 as the P4 except the more recent variants lacks an integer shifter and so shifts have ~10 times longer latency then simple operations like adds) Originally committed as revision 6702 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Have xvid encoder wrapper honnor -vtag optionRamiro Polla2006-10-15
| | | | | | | | | Patch by Ramiro Polla angustia A arrozcru P no-ip P org Original thread: Date: 14.10.2006 05:44 Subject: [Ffmpeg-devel] xvid ignores -vtag Originally committed as revision 6701 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert putting EXTRALIBS in common.mak, linking fails on MinGW.Diego Biurrun2006-10-15
| | | | Originally committed as revision 6700 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently use $(BUILD_ROOT).Diego Biurrun2006-10-15
| | | | Originally committed as revision 6699 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Warn about --enable-gpl.Diego Biurrun2006-10-15
| | | | Originally committed as revision 6698 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 0.pgm is now 00.pgm.Diego Biurrun2006-10-15
| | | | Originally committed as revision 6697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable.Diego Biurrun2006-10-15
| | | | Originally committed as revision 6696 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently use $(BUILD_ROOT).Diego Biurrun2006-10-15
| | | | Originally committed as revision 6695 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ignore blocks with no samples and flags (but usually with MD5 sum)Kostya Shishkov2006-10-15
| | | | Originally committed as revision 6694 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make public domain. Hope Diego dont mind it, he had two cosmetics commits :)Alex Beregszaszi2006-10-14
| | | | Originally committed as revision 6693 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use proper PRI?64 macros for %ll? format to fix printf format warnings:Dominik Mierzejewski2006-10-14
| | | | | | | | | | | | | utils.c:833: warning: format ‘%lld’ expects type ‘long long int’, but argument 5 has type ‘int64_t’ utils.c:833: warning: format ‘%lld’ expects type ‘long long int’, but argument 6 has type ‘int64_t’ utils.c:854: warning: format ‘%lld’ expects type ‘long long int’, but argument 5 has type ‘int64_t’ utils.c:854: warning: format ‘%lld’ expects type ‘long long int’, but argument 6 has type ‘int64_t’ asf.c:872: warning: format ‘%Lx’ expects type ‘long long unsigned int’, but argument 4 has type ‘int64_t’ mov.c:1754: warning: format ‘%llx’ expects type ‘long long unsigned int’, but argument 5 has type ‘int64_t’ Approved by Michael. Originally committed as revision 6692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Put libmpeg2 IDCT functions under CONFIG_GPL, fixes link failureDiego Biurrun2006-10-14
| | | | | | with --disable-opts. Originally committed as revision 6691 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove empty structures,Steve L'Homme2006-10-14
| | | | | | | | | Patch by Steve LHomme Original thread: Date: 13.10.2006 21:55 Subject: [Ffmpeg-devel] [PATCH] Remove empty structures Originally committed as revision 6690 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make PNG produce correct 8-bit picturesKostya Shishkov2006-10-14
| | | | Originally committed as revision 6689 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move block size check to decoderKostya Shishkov2006-10-14
| | | | Originally committed as revision 6688 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l CODEC vs. FORMATMichael Niedermayer2006-10-13
| | | | Originally committed as revision 6687 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flv files from myspace with mp3 audio require need_parsing because theRoberto Togni2006-10-13
| | | | | | frames are fragmented. Originally committed as revision 6686 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify escape decodingMichael Niedermayer2006-10-13
| | | | Originally committed as revision 6685 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove intrinsics checks, they are no longer used.Diego Biurrun2006-10-13
| | | | | | partly based on a patch by Zuxy Meng, zuxy.meng gmail com Originally committed as revision 6684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dehack *ps_state indexing in the branchless decoderMichael Niedermayer2006-10-13
| | | | Originally committed as revision 6683 to svn://svn.ffmpeg.org/ffmpeg/trunk
* TIFF decoderKostya Shishkov2006-10-13
| | | | Originally committed as revision 6682 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a note about illegal codec IDs.Diego Biurrun2006-10-13
| | | | Originally committed as revision 6681 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add codec ID for Shorten audio.Diego Biurrun2006-10-13
| | | | Originally committed as revision 6680 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add "memory" to the clobber list we change memory so we need it, this also ↵Michael Niedermayer2006-10-12
| | | | | | fixes some problems with gcc svn Originally committed as revision 6679 to svn://svn.ffmpeg.org/ffmpeg/trunk