summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* Fix the av_set_string() free / alloc issue.Michael Niedermayer2008-07-08
| | | | Originally committed as revision 14134 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove wrong casts from vector declarations, this would cause errors whenDiego Biurrun2008-07-08
| | | | | | compiling with -std=gnu99. Blessed by Luca Barbato. Originally committed as revision 14129 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Electronic Arts CMV decoderPeter Ross2008-07-08
| | | | Originally committed as revision 14110 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove AVPaletteControl from ALG MM demuxer/decoderPeter Ross2008-07-08
| | | | Originally committed as revision 14109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make LOAD4/STORE4 macros more generic.Victor Pollex2008-07-08
| | | | | | | | Patch by Victor Pollex victor pollex web de Original thread: [PATCH] mmx implementation of vc-1 inverse transformations Date: 06/21/2008 03:37 PM Originally committed as revision 14108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1 c-asm loop less and 1x unroll of float_to_int16_sse()Michael Niedermayer2008-07-07
| | | | | | 25% faster Originally committed as revision 14104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix x86-64Michael Niedermayer2008-07-07
| | | | Originally committed as revision 14103 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont use C-asm loops and unroll once float_to_int16_3dnow()Michael Niedermayer2008-07-07
| | | | | | 30% faster Originally committed as revision 14102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* redundant assignment found by ClangBenjamin Larsson2008-07-07
| | | | Originally committed as revision 14096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify: glob->phase is always == 3Vitor Sessak2008-07-06
| | | | Originally committed as revision 14094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindent tablesVitor Sessak2008-07-06
| | | | Originally committed as revision 14093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove phasep context var, it is just phase*5Vitor Sessak2008-07-06
| | | | Originally committed as revision 14092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Slighly faster operationVitor Sessak2008-07-06
| | | | Originally committed as revision 14091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Typo in a comment: s/two avoid/to avoid/Vitor Sessak2008-07-06
| | | | Originally committed as revision 14090 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: remove bracesVitor Sessak2008-07-06
| | | | Originally committed as revision 14089 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Another use of scalar_product_float()Vitor Sessak2008-07-06
| | | | Originally committed as revision 14088 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not reimplement memmove()Vitor Sessak2008-07-06
| | | | Originally committed as revision 14087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove context fields which can be used as simple local variables.Gregory Montoir2008-07-06
| | | | | | patch by Gregory Montoir, cyx users sourceforge net Originally committed as revision 14086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove av_cold attribute on decode_frame and add it to decode_endGregory Montoir2008-07-06
| | | | | | | to match other codecs. patch by Gregory Montoir, cyx users sourceforge net Originally committed as revision 14084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document av_find_opt().Stefano Sabatini2008-07-06
| | | | Originally committed as revision 14083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Altivec implementation of APE vector functionsKostya Shishkov2008-07-06
| | | | Originally committed as revision 14082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add several vector functions used by Monkey's Audio decoder to dsputilKostya Shishkov2008-07-06
| | | | Originally committed as revision 14081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: remove bracesVitor Sessak2008-07-05
| | | | Originally committed as revision 14080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Create a function for float dot product instead of duplicating all over the fileVitor Sessak2008-07-05
| | | | Originally committed as revision 14079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add correct header #include to fix 'make checkheaders'.Diego Biurrun2008-07-05
| | | | Originally committed as revision 14078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add required stdint.h header #include.Diego Biurrun2008-07-05
| | | | Originally committed as revision 14077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling cosmeticsDiego Biurrun2008-07-05
| | | | Originally committed as revision 14076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a note to remind people that new PCM/ADPCM formats need to be added toDiego Biurrun2008-07-05
| | | | | | the Makefile as well to allow proper selective compilation. Originally committed as revision 14072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable, fixes the warning:Diego Biurrun2008-07-05
| | | | | | libavcodec/nellymoserdec.c:133: warning: unused variable ā€˜iā€™ Originally committed as revision 14071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Write for loops in a more standard way. In my opinion, they are much more ā†µVitor Sessak2008-07-04
| | | | | | readable now. Originally committed as revision 14068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MLP/TrueHD decoder.Ramiro Polla2008-07-04
| | | | Originally committed as revision 14067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move vars declaration to inner loop when possibleVitor Sessak2008-07-04
| | | | Originally committed as revision 14066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SimplifyVitor Sessak2008-07-04
| | | | Originally committed as revision 14065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded varVitor Sessak2008-07-03
| | | | Originally committed as revision 14063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use a matrix instead of a vectorVitor Sessak2008-07-03
| | | | Originally committed as revision 14062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent tableVitor Sessak2008-07-03
| | | | Originally committed as revision 14061 to svn://svn.ffmpeg.org/ffmpeg/trunk
* We do not only calculate it but we also return it.Michael Niedermayer2008-07-03
| | | | Originally committed as revision 14058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More correct comment.Michael Niedermayer2008-07-03
| | | | Originally committed as revision 14057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make sum_of_squares() more genericMichael Niedermayer2008-07-03
| | | | Originally committed as revision 14056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: split a long line.Alexander Strange2008-07-02
| | | | Originally committed as revision 14055 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use get_cabac_bypass_sign instead of an if/else.Alexander Strange2008-07-02
| | | | Originally committed as revision 14054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reorder the if/else for residual cats to match gcc's branch prediction.Alexander Strange2008-07-02
| | | | Originally committed as revision 14053 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify loop condition for readability.Alexander Strange2008-07-02
| | | | Originally committed as revision 14052 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent.Alexander Strange2008-07-02
| | | | Originally committed as revision 14051 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clone decode_cabac_residual() for DC residuals, to get rid of a bunch of ā†µAlexander Strange2008-07-02
| | | | | | branches in the main loop. Originally committed as revision 14050 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't generate two copies of hl_decode_mb() under ENABLE_SMALL.Alexander Strange2008-07-02
| | | | | | (assuming your compiler removes unused static functions) Originally committed as revision 14049 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't test for H264 encoding unless an encoder exists.Alexander Strange2008-07-02
| | | | Originally committed as revision 14048 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify comment about parity nibble.Ramiro Polla2008-07-02
| | | | Originally committed as revision 14047 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ff_mlp_read_major_sync() take a GetBitContext instead of buffers.Ramiro Polla2008-07-01
| | | | Originally committed as revision 14044 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify/simplify documentation for the default_val field in AVOption.Stefano Sabatini2008-06-30
| | | | Originally committed as revision 14043 to svn://svn.ffmpeg.org/ffmpeg/trunk