summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Make ff_psy_preprocess_end() act like av_freep().Alex Converse2010-06-28
| | | | Originally committed as revision 23867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacenc: Properly pad extradata.Alex Converse2010-06-28
| | | | | | This fixes a valgrind error when encoding to ADTS. Originally committed as revision 23866 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change MMXEXT to MMX2, MMXEXT is deprecatedBaptiste Coudurier2010-06-28
| | | | Originally committed as revision 23865 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, increase total size after debugging messageBaptiste Coudurier2010-06-28
| | | | Originally committed as revision 23864 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentJosh Allmann2010-06-28
| | | | | | Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23862 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Clean up FMTP parsing code in AMR RTP depacketizerJosh Allmann2010-06-28
| | | | | | Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23861 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Cleanup FMTP parsing code in Xiph RTP depacketizerJosh Allmann2010-06-28
| | | | | | Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23860 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Malloc the fmtp value bufferJosh Allmann2010-06-28
| | | | | | | | This allows very large value strings, needed for xiph extradata. Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23859 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add x86 asm functions for VP8 put_pixelsJason Garrett-Glaser2010-06-28
| | | | Originally committed as revision 23858 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add MMX, SSE2, SSSE3 asm for VP8 bilinear MCJason Garrett-Glaser2010-06-28
| | | | Originally committed as revision 23857 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pass subshift an argument of the proper type.Reimar Döffinger2010-06-28
| | | | | | No changes in generated code. Originally committed as revision 23856 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use a consistent type for multbl array function parameters.Reimar Döffinger2010-06-28
| | | | Originally committed as revision 23855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify MV parsing, removes laying out 2 or 4 (16x8/8x8/8x16) MVs over allRonald S. Bultje2010-06-28
| | | | | | | 16 subblocks (since we no longer need that), which should also lead to a minor speedup. Originally committed as revision 23854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimize split MC, so we don't always do 4x4 blocks of 4x4pixels each, butRonald S. Bultje2010-06-28
| | | | | | | | | we apply them as 16x8/8x16/8x8 subblocks where possible. Since this allows us to use width=8/16 instead of width=4 MC functions, we can now take more advantage of SSE2/SSSE3 optimizations, leading to a total speedup for splitMV filter of about 10%. Originally committed as revision 23853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentJosh Allmann2010-06-28
| | | | | | Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Clean up FMTP parsing code in MPEG-4/AAC RTP depacketizerJosh Allmann2010-06-28
| | | | | | Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Clean up FMTP parsing code in H.264 RTP depacketizerJosh Allmann2010-06-28
| | | | | | Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23850 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentJosh Allmann2010-06-28
| | | | | | Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23849 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Return ENOMEM if H.264 RTP fails to allocate memory for SDP extradataJosh Allmann2010-06-28
| | | | | | Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Add generic function for iterating over FMTP configuration linesJosh Allmann2010-06-28
| | | | | | | | This will be used for cleaning up code that is common among RTP depacketizers. Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23847 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Move space_chars from avformat/internal to rtpdecJosh Allmann2010-06-28
| | | | | | Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23846 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set rv34 (0,0) subpel mc functions to the optimised h264 onesMåns Rullgård2010-06-28
| | | | Originally committed as revision 23845 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix x86 build with h264dsp disabledMåns Rullgård2010-06-28
| | | | Originally committed as revision 23844 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: make --disable-everything soft-disable thingsMåns Rullgård2010-06-28
| | | | | | | This allows explicitly enabled things to _select others with the intended result. Originally committed as revision 23843 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix an "assignment from incompatible pointer type" warning in ↵Eli Friedman2010-06-28
| | | | | | | | av_read_frame_internal Patch by Eli Friedman, eli dot friedman at gmail Originally committed as revision 23842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add patcheck checks for assignments that look like compound assignmentsEli Friedman2010-06-28
| | | | | | Patch by Eli Friedman, eli dot friedman at gmail Originally committed as revision 23841 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use lookup table to avoid division in mp2 decoderVitor Sessak2010-06-28
| | | | Originally committed as revision 23840 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix linking if MMX is disabled.Stefano Sabatini2010-06-27
| | | | Originally committed as revision 23839 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump micro and add APIchanges entry after av_parse_color() extension.Stefano Sabatini2010-06-27
| | | | Originally committed as revision 23838 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: merge "} else" and "if (...) {" lines, less confusing.Stefano Sabatini2010-06-27
| | | | Originally committed as revision 23837 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after the last commit.Stefano Sabatini2010-06-27
| | | | Originally committed as revision 23836 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend color syntax, make it accept an alpha component specifier.Stefano Sabatini2010-06-27
| | | | Originally committed as revision 23835 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ColorEntry.rgba_color to rgb_color and do not reserve a fourthStefano Sabatini2010-06-27
| | | | | | | byte for the alpha component, as it is never used, clarify the code and prevent bad usage of it. Originally committed as revision 23834 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vaapi: add missing #include "h263.h"Måns Rullgård2010-06-27
| | | | Originally committed as revision 23833 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ra288: convert VLAs to fixed sizeMåns Rullgård2010-06-27
| | | | Originally committed as revision 23832 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change type of zz_table to uint8_t to match the scantables it points to.Reimar Döffinger2010-06-27
| | | | Originally committed as revision 23831 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a const declaration, fixing a warningEli Friedman2010-06-27
| | | | | | Patch by Eli Friedman, eli dot friedman at gmail Originally committed as revision 23830 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix clang warning, make initialization more readableEli Friedman2010-06-27
| | | | | | Patch by Eli Friedman, eli dot friedman at gmail Originally committed as revision 23829 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove an unused label, fixing a warningEli Friedman2010-06-27
| | | | | | Patch by Eli Friedman, eli dot friedman at gmail Originally committed as revision 23828 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add proper const declaration to a cast, fixes a warningEli Friedman2010-06-27
| | | | | | Patch by Eli Friedman, eli dot friedman at gmail Originally committed as revision 23827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add const to some pointer parameters.Eli Friedman2010-06-27
| | | | | | Patch by Eli Friedman, eli D friedman A gmail Originally committed as revision 23826 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add myself as maintainer for table generation code.Reimar Döffinger2010-06-27
| | | | Originally committed as revision 23825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update tablegen documentation for WRITE_ARRAY macro.Reimar Döffinger2010-06-27
| | | | Originally committed as revision 23824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make implicit function declarations an errorMåns Rullgård2010-06-27
| | | | Originally committed as revision 23823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ff_url_split() publicMåns Rullgård2010-06-27
| | | | | | | ff_url_split() is retained as an alias, as it was used by ffserver, to avoid breaking ABI compatibility with it. Originally committed as revision 23822 to svn://svn.ffmpeg.org/ffmpeg/trunk
* tablegen: implement and use WRITE_ARRAY macrosDiego Pettenò2010-06-27
| | | | | | | | | Two macros (WRITE_ARRAY and WRITE_ARRAY_2D) take the prefix (modifiers) (not all tables are static, and they might not be constant either), the type, and the name of the array. It'll be copied with same name and type, and with the correct size of the currently-defined object. Originally committed as revision 23821 to svn://svn.ffmpeg.org/ffmpeg/trunk
* tableprint: use the type name as-is for the functions' names.Diego Pettenò2010-06-27
| | | | | | | | This drops one parameter from the functions' macros, and require structures to be typedeffed, but ensures that it is possible to map 1-to-1 the type to the function name. Originally committed as revision 23820 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adpcm: convert VLAs to malloc/freeMåns Rullgård2010-06-27
| | | | Originally committed as revision 23819 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix libvorbis encoding with more than 2 channelsJames Darnley2010-06-27
| | | | | | | | Fixes issue 1325. Patch by James Darnley, james dot darnley at gmail Originally committed as revision 23818 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix implicit cast warningEli Friedman2010-06-27
| | | | | | Patch by Eli Friedman, eli dot friedman at gmail Originally committed as revision 23817 to svn://svn.ffmpeg.org/ffmpeg/trunk