summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Remove .SECONDARY directiveMåns Rullgård2010-03-10
| | | | | | | | | The presence of the .SECONDARY directive caused thing to not always be correctly rebuilt. Mentioning the object files explicitly as targets gives the desired result of make not deleting them without unpleasant side-effects. Originally committed as revision 22422 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make version.h depend on git changesMåns Rullgård2010-03-10
| | | | Originally committed as revision 22421 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve version.h generationMåns Rullgård2010-03-10
| | | | | | | | | | | Force version.sh to run whenever the version might have changed, regardless of what is being built. This is done by attaching the dependencies to a dummy file (.version) which is included from the makefile. As make will always attempt to rebuild any included files before considering other rules, this ensures that the real version.h is (re-)created before it is required by any source file. Originally committed as revision 22420 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace $(G) with more generic $(M) in silent make rulesMåns Rullgård2010-03-10
| | | | Originally committed as revision 22419 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prettify make output for documentationMåns Rullgård2010-03-10
| | | | Originally committed as revision 22418 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change dir into doc/ when running texi2htmlMåns Rullgård2010-03-10
| | | | | | | This silly program always writes its output to the current directory. Changing directory is better than moving the file afterwards. Originally committed as revision 22417 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp3: avoid buffer overread in coeff decodeDavid Conrad2010-03-10
| | | | | | | I couldn't measure it to be slower for normal interframe videos. For the worst case, high-bitrate intra-only videos, it can be 0.7% slower. Originally committed as revision 22416 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation after r22414.Carl Eugen Hoyos2010-03-09
| | | | Originally committed as revision 22415 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SIMD optimization using float_to_int16_interleave.Zhou Zongyi2010-03-09
| | | | | | Patch by Zhou Zongyi, zhouzy A os D pku D edu D cn Originally committed as revision 22414 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacsbr: Check that bs_num_env is valid before writing arrays with it as an ↵Alex Converse2010-03-09
| | | | | | offset. Originally committed as revision 22413 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacsbr: Cleanup read_sbr_grid and copy_sbr_grid after the recent overhaul of ↵Alex Converse2010-03-09
| | | | | | those functions. Originally committed as revision 22412 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacsbr: Factor out the common end border case from t_q setup.Alex Converse2010-03-09
| | | | Originally committed as revision 22411 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacsbr: read bs_rel_bord directly into t_env.Alex Converse2010-03-09
| | | | Originally committed as revision 22410 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacsbr: Make the previous value of bs_num_env local to read_sbr_data().Alex Converse2010-03-09
| | | | Originally committed as revision 22409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacsbr: Initialize e_a[1] to -1.Alex Converse2010-03-09
| | | | | | | | This triggers lAPrev (e_a[0]) on the first SBR frame to be -1. The spec is somewhat ambiguous to what this value should be but this increases the accuracy of al_sbr_e_44_1 and similar streams from 14 bits to 15 bits. Originally committed as revision 22408 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace many includes of libavutil/common.h with what is actually neededMåns Rullgård2010-03-09
| | | | | | | This reduces the number of false dependencies on header files and speeds up compilation. Originally committed as revision 22407 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Docs: Place the vorbis comment properly, currently it's shown above the tableMartin Storsjö2010-03-09
| | | | Originally committed as revision 22406 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libm.h needs attributes.hMåns Rullgård2010-03-09
| | | | Originally committed as revision 22405 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: set size of asm functions in object filesMåns Rullgård2010-03-09
| | | | Originally committed as revision 22404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use rt->control_uri consequently instead of s->filename in all RTSP commandsMartin Storsjö2010-03-09
| | | | Originally committed as revision 22403 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace some printf() with puts() in tableprint.cMåns Rullgård2010-03-09
| | | | | | This gets rid of a gcc warning about non-literal format strings. Originally committed as revision 22402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prettify make output when generating headersMåns Rullgård2010-03-09
| | | | Originally committed as revision 22401 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add special case to avoid binary search when appending index entries.Michael Niedermayer2010-03-09
| | | | Originally committed as revision 22400 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move libm replacements to new header libm.hMåns Rullgård2010-03-09
| | | | | | | | | | | | | | | | | | | ffmpeg.c uses lrintf(), which is missing on some systems. Previously it picked up the replacement via libavutil/internal.h due to HAVE_AV_CONFIG_H being erroneously defined. Moving these replacements to a separate header enables ffmpeg.c to use them without being exposed to internal interfaces. This use of a non-public header is justified by the header in question not being part of the internal interface either. It should rather be considered as part of the build system, which is shared between the libraries and the applications. This header cannot be installed since the tested conditions depend on the compiler. Originally committed as revision 22399 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RTSP: Resolve and use the actual IP address of the peer we're connected to,Martin Storsjö2010-03-09
| | | | | | | | instead of using the original host name, since the RTP (and UDP) protocols may choose another IP address if the host name resolves into several different addresses. Originally committed as revision 22398 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reorder some make rulesMåns Rullgård2010-03-09
| | | | | | I like it better this way. Originally committed as revision 22397 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove superflous ifdef CONFIG_{STATIC,SHARED} in makefilesMåns Rullgård2010-03-09
| | | | Originally committed as revision 22396 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: always write shared lib variables to config.makMåns Rullgård2010-03-09
| | | | Originally committed as revision 22395 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify static/shared build rulesMåns Rullgård2010-03-09
| | | | Originally committed as revision 22394 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move some make rules outside of eval'd blockMåns Rullgård2010-03-09
| | | | | | These rules use only global variables and thus do not need to be expanded. Originally committed as revision 22393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic: move some makefile variable definitionsMåns Rullgård2010-03-09
| | | | Originally committed as revision 22392 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicates from OBJSMåns Rullgård2010-03-09
| | | | Originally committed as revision 22391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove static function name prefixes from American Laser Games MM demuxerPeter Ross2010-03-09
| | | | Originally committed as revision 22390 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure Bink demuxer returns AVERROR code when av_get_packet() failsPeter Ross2010-03-09
| | | | Originally committed as revision 22389 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable tcp_protocol when enabling httpPeter Ross2010-03-09
| | | | Originally committed as revision 22388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacsbr: Dead code removal.Alex Converse2010-03-09
| | | | Originally committed as revision 22387 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacsbr: Remove a slightly incorrect comment.Alex Converse2010-03-09
| | | | | | The two conditions are equivalent. Originally committed as revision 22386 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r22288 "Increase FF_INPUT_BUFFER_PADDING_SIZE to 64."Alex Converse2010-03-09
| | | | Originally committed as revision 22385 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacsbr: Cleanup the newly merged read_sbr_grid, eliminating several contextAlex Converse2010-03-09
| | | | | | and some duplicate local variables. Originally committed as revision 22384 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacsbr: Move the e_a calculation from sbr_mapping() to read_sbr_grid().Alex Converse2010-03-09
| | | | Originally committed as revision 22383 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacsbr: Merge sbr_time_freq_grid into read_sbr_grid (and into copy_sbr_grid).Alex Converse2010-03-09
| | | | Originally committed as revision 22382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacsbr: Fail early on illegal envelope counts.Alex Converse2010-03-09
| | | | Originally committed as revision 22381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacsbr: Check for illegal values of bs_pointer in sbr_read_grid().Alex Converse2010-03-09
| | | | Originally committed as revision 22380 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert commit 22378.Vitor Sessak2010-03-09
| | | | | | It broke FATE and kostya asked me on IRC to revert it. Originally committed as revision 22379 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation on powerpc with --disable-altivecReinhard Tartler2010-03-09
| | | | | | | in case altivec is disabled, even compilation of code using altivec keywords or asm must be avoided. Originally committed as revision 30869 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Check for reference frames so RV 3/4 won't segfault trying to copy data fromKostya Shishkov2010-03-09
| | | | | | nonexisting reference. Originally committed as revision 22378 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp3: correctly clip vp3_draw_horiz_band callDavid Conrad2010-03-09
| | | | Originally committed as revision 22377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: Include missing return values in functions made non-void by the ↵Alex Converse2010-03-09
| | | | | | previous commit. Originally committed as revision 22376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacsbr: Propagate errors from read_sbr_grid to prevent crashes in ↵Alex Converse2010-03-09
| | | | | | malformatted streams. Originally committed as revision 22375 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a missing fft.h include to the aacsbr decoder.Georgi Chorbadzhiyski2010-03-09
| | | | | | Patch by Georgi Chorbadzhiyski gf at unixsol dot org Originally committed as revision 22374 to svn://svn.ffmpeg.org/ffmpeg/trunk