summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* Fix spelling.Ronald S. Bultje2010-03-11
| | | | Originally committed as revision 22470 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make binkaudio work with ff_float_to_int16_interleave_c (martin at martin ↵Peter Ross2010-03-11
| | | | | | dot st) Originally committed as revision 22466 to svn://svn.ffmpeg.org/ffmpeg/trunk
* snow: remove unused stub functionsMåns Rullgård2010-03-11
| | | | | | | | w53_32_c() and w97_32_c() are defined as stubs when snow encoder is disabled. In this case, those functions are not referenced at all and do thus not need to be defined. Originally committed as revision 22448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some required castsMåns Rullgård2010-03-11
| | | | | | | | These casts are correct and safe. The pointers are guaranteed to have proper alignment, and aliasing is not a problem with character types. Originally committed as revision 22446 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sparc: fix a few pages of cast warningsMåns Rullgård2010-03-10
| | | | Originally committed as revision 22441 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sparc: fix dsputil prototypesMåns Rullgård2010-03-10
| | | | Originally committed as revision 22440 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only use .size in ARM assembly when targeting ELFMartin Storsjö2010-03-10
| | | | | | This fixes compilation on mingw32ce Originally committed as revision 22437 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check level_prefix a bit (this just checks the max our bitreader can handle,Michael Niedermayer2010-03-10
| | | | | | | as i did nt find a limit in the spec) This should stop cavlc_decode_residual() on a zero bitstream Originally committed as revision 22429 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
* 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
* 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
* 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
* 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
* 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
* Bump avcodec minor version for kgv1 decoderDaniel Verkamp2010-03-09
| | | | Originally committed as revision 22367 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Kega Game Video (KGV1) decoderDaniel Verkamp2010-03-09
| | | | Originally committed as revision 22364 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix interlaced vc-3 decoding, issue #1753Baptiste Coudurier2010-03-09
| | | | Originally committed as revision 22362 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp3: Set pict_typeDavid Conrad2010-03-09
| | | | Originally committed as revision 22361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp3: Allocate a dummy reference frame if we have no keyframeDavid Conrad2010-03-09
| | | | Originally committed as revision 22360 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp3: use FF_BUFFER_TYPE_COPYDavid Conrad2010-03-09
| | | | Originally committed as revision 22359 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp3: Don't leak buffers on errorsDavid Conrad2010-03-09
| | | | Originally committed as revision 22358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp3: Simplify buffer managementDavid Conrad2010-03-09
| | | | Originally committed as revision 22357 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp3: be less spammy on broken filesDavid Conrad2010-03-09
| | | | Originally committed as revision 22356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move ff_sqrt() to libavutil/intmath.hMåns Rullgård2010-03-08
| | | | Originally committed as revision 22345 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing includes in bfin and sh4 filesMåns Rullgård2010-03-08
| | | | Originally committed as revision 22342 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: add some missing includesMåns Rullgård2010-03-08
| | | | Originally committed as revision 22340 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: fix dct-testMåns Rullgård2010-03-08
| | | | Originally committed as revision 22339 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip mpegaudio3.h in checkheadersMåns Rullgård2010-03-08
| | | | | | | | This unused header is a placeholder for work in progress(?). This makes checkheaders pass again. Originally committed as revision 22338 to svn://svn.ffmpeg.org/ffmpeg/trunk