summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* libavcore needs libavutilMåns Rullgård2010-07-27
| | | | Originally committed as revision 24532 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fate: delete build and install dirs after sessionMåns Rullgård2010-07-27
| | | | Originally committed as revision 24531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fate: add fate session scriptMåns Rullgård2010-07-26
| | | | Originally committed as revision 24530 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fate: create report filesMåns Rullgård2010-07-26
| | | | Originally committed as revision 24529 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: extract detailed compiler identificationMåns Rullgård2010-07-26
| | | | Originally committed as revision 24528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* version.sh: write version to stdout if no output file specifiedMåns Rullgård2010-07-26
| | | | Originally committed as revision 24527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a simple base64 encoder for use in testsMåns Rullgård2010-07-26
| | | | Originally committed as revision 24526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an APIchanges entry for the libavcore/parseutils.{h,c} addition ofStefano Sabatini2010-07-26
| | | | | | r24518. Originally committed as revision 24525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid the use of an intermediary variable inStefano Sabatini2010-07-26
| | | | | | av_parse_video_rate(). Simplify. Originally committed as revision 24524 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make VideoFrameRateAbbr contain a rational rather than two ints forStefano Sabatini2010-07-26
| | | | | | num and den. Simplify. Originally committed as revision 24523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove reference to the "frame" term in variable names. Simpler andStefano Sabatini2010-07-26
| | | | | | more consistent with the function names. Originally committed as revision 24522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_parse_video_size() and av_parse_video_rate() returnStefano Sabatini2010-07-26
| | | | | | AVERROR(EINVAL) rather than -1 in case of unsuccess. Originally committed as revision 24521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent.Stefano Sabatini2010-07-26
| | | | Originally committed as revision 24520 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make pkgconfig_generate check if the library is enabled before toStefano Sabatini2010-07-26
| | | | | | generate the pc files. Originally committed as revision 24519 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate av_parse_video_frame_size() and av_parse_video_frame_rate()Stefano Sabatini2010-07-26
| | | | | | | | | | | in favor of the newly added corresponding functions av_parse_video_size() and av_parse_video_rate() defined in libavcore/parseutils.h. This change also adds a linking-time dependency of libavcodec and of libavfilter on libavcore. Originally committed as revision 24518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after r24516.Ronald S. Bultje2010-07-26
| | | | Originally committed as revision 24517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use inverse error branches, i.e. instead of if(something){success} else {error},Ronald S. Bultje2010-07-26
| | | | | | use if(!something) {return error;} success;, which needs less indenting. Originally committed as revision 24516 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. ThisRonald S. Bultje2010-07-26
| | | | | | | should help in making mmst a little more userfriendly, or at least debuggable. Also use helpful error return values instead of -1. Originally committed as revision 24515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use pmaddubsw for the mbedge_filter (>=ssse3), 6-10 cycles faster.Ronald S. Bultje2010-07-26
| | | | Originally committed as revision 24514 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VP8: Much faster SSE2 MCJason Garrett-Glaser2010-07-26
| | | | | | | 5-10% faster or more on Phenom, Athlon 64, and some others. Helps some on pre-SSSE3 Intel chips as well, but not as much. Originally committed as revision 24513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define static functions fill_image_linesize() andS.N. Hemanth Meenakshisundaram2010-07-26
| | | | | | | | | | | | fill_image_data_ptr(). ff_fill_linesize() and ff_fill_pointer() now wrap these functions. The new functions are more generic, and are going to be exported in a future patch. Patch by S.N. Hemanth Meenakshisundaram smeenaks # ucsd § edu. Originally committed as revision 24512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable no-loop memory/register saving for ssse3/sse4 also.Ronald S. Bultje2010-07-26
| | | | Originally committed as revision 24511 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Save a register (or regsize of stackspace for x86-32) for the no-loopRonald S. Bultje2010-07-26
| | | | | | | mbedge loopfilter functions, by re-using space that holds a variable that we no longer need. Originally committed as revision 24510 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use nested ifs instead of &&, which appears to not work with %ifidn (i.e. thisRonald S. Bultje2010-07-26
| | | | | | construct was always enabled, even for <ssse3 versions). Originally committed as revision 24509 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename pow variable to pwr.Axel Holzinger2010-07-26
| | | | | | Patch by Axel Holzinger <aholzinger gmx de>. Originally committed as revision 24508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split pextrw macro-spaghetti into several opt-specific macros, this will makeRonald S. Bultje2010-07-26
| | | | | | | | future new optimizations (imagine a sse5) much easier. Also fix a bug where we used the direction (%2) rather than optimization (%1) to enable this, which means it wasn't ever actually used... Originally committed as revision 24507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent.Stefano Sabatini2010-07-26
| | | | Originally committed as revision 24506 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename av_transcode() to transcode().Stefano Sabatini2010-07-26
| | | | | | | av_ prefix is reserved for libav* libraries functions, it is confusing to use it for an application function. Originally committed as revision 24505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VP8: add missing freeJason Garrett-Glaser2010-07-26
| | | | | | Fixes a tiny memory leak. Originally committed as revision 24504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: add support for muxing SRT tracksAurelien Jacobs2010-07-25
| | | | Originally committed as revision 24503 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add mime-type for ASS muxerAurelien Jacobs2010-07-25
| | | | Originally committed as revision 24502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Include the correct header that actually is used, use quotes instead of ↵Martin Storsjö2010-07-25
| | | | | | angle brackets Originally committed as revision 24501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix pkgconfig_generate line for libavcore.Stefano Sabatini2010-07-25
| | | | | | libavcore depends on libavutil, and does not require extralibs. Originally committed as revision 24500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Accept stdin as input for patcheck.Rafaël Carré2010-07-25
| | | | | | Patch by Rafaël Carré, rafael d carre a gmail Originally committed as revision 24499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix r24445: Instead of needlessly initialising a variable, silence the warning.Carl Eugen Hoyos2010-07-25
| | | | Originally committed as revision 24498 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename av_exit() to ffmpeg_exit().Stefano Sabatini2010-07-25
| | | | | | | av_ is a prefix reserved for av* libraries functions, using that for an application function is confusing. Originally committed as revision 24497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use X ? Y : Z construct, simplify.Stefano Sabatini2010-07-25
| | | | Originally committed as revision 24496 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: fix indentation and remove a useless else.Reimar Döffinger2010-07-25
| | | | Originally committed as revision 24495 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify get_byte and url_fgetc.Reimar Döffinger2010-07-25
| | | | Originally committed as revision 24494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only 4-bit ADPCM IMA WAV files are supported.Carl Eugen Hoyos2010-07-25
| | | | Originally committed as revision 24493 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: rename enc -> dec in opt_input_file().Stefano Sabatini2010-07-25
| | | | | | | The variable refer to a *decoder* context, the old name was misleading. Originally committed as revision 24492 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move ffm_close function up to avoid a forward declaration.Reimar Döffinger2010-07-25
| | | | Originally committed as revision 24491 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmdec: Do not manually free streams on read_header error, this is alwaysReimar Döffinger2010-07-25
| | | | | | | | handled by upper layers. Fixes double-frees (issue 2003). Instead call ffm_close to ensure rc_eqs are freed also in the error case. Originally committed as revision 24490 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix obvious bug in assignment. Somehow, the test vectors don't test this...Ronald S. Bultje2010-07-25
| | | | Originally committed as revision 24489 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add SubRip muxer and demuxerAurelien Jacobs2010-07-24
| | | | Originally committed as revision 24488 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix SPLATB_REG mess. Used to be a if/elseif/elseif/elseif spaghetti, so thisRonald S. Bultje2010-07-24
| | | | | | | | splits it into small optimization-specific macros which are selected for each DSP function. The advantage of this approach is that the sse4 functions now use the ssse3 codepath also without needing an explicit sse4 codepath. Originally committed as revision 24487 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify lavfi test script a littleMåns Rullgård2010-07-24
| | | | Originally committed as revision 24486 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unbreak parallel lavfi testingMåns Rullgård2010-07-24
| | | | Originally committed as revision 24485 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacenc: TLS: Save maximum values for each swb in a table.Alex Converse2010-07-24
| | | | | | This gives an almost 20% speedup. Originally committed as revision 24484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: Remove some commented out code that slipped in.Alex Converse2010-07-24
| | | | Originally committed as revision 24483 to svn://svn.ffmpeg.org/ffmpeg/trunk