summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Prettify some assignmentsReimar Döffinger2009-03-311-20/+20
| | | | Originally committed as revision 18261 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of some pointless bitmask/shifter variables in interplayvideo.cReimar Döffinger2009-03-311-32/+21
| | | | Originally committed as revision 18260 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark non-exported functions in test and example programs as static.Diego Biurrun2009-03-317-26/+28
| | | | Originally committed as revision 18259 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove inclusion of va.h, not needed anymore after r18256.Gwenole Beauchesne2009-03-311-1/+0
| | | | Originally committed as revision 18258 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give better names to reference DCT functions.Dylan Yudaken2009-03-312-37/+37
| | | | | | patch by Dylan Yudaken, dyudaken gmail com Originally committed as revision 18257 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve VA API buffers allocation logic. This also reduces struct vaapi_contextGwenole Beauchesne2009-03-314-95/+51
| | | | | | down to ~60 bytes vs. a few KBs before, and gets rid of explicit VA data types. Originally committed as revision 18256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move declaration of prn before any assignment.Benoit Fouet2009-03-311-1/+1
| | | | Originally committed as revision 18255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: add support for MLP and TRUEHD codec tagsAurelien Jacobs2009-03-301-0/+2
| | | | Originally committed as revision 18254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename regression test result files from b-libav* to b-lavf* for consistency.Diego Biurrun2009-03-303-169/+169
| | | | | | | This requires updating the gxf regression checksum since the gxf muxer puts the filename in files it creates. Originally committed as revision 18253 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Quote stored configure arguments containing spacesMåns Rullgård2009-03-301-2/+7
| | | | Originally committed as revision 18252 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix running regression tests on remote targetsMåns Rullgård2009-03-301-1/+1
| | | | Originally committed as revision 18251 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Record MPEG-4 sprite trajectory points [up to num_sprite_warping_points][isY].Gwenole Beauchesne2009-03-302-2/+5
| | | | Originally committed as revision 18250 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add required va/va.h header, should fix 'make checkheaders'.Diego Biurrun2009-03-301-0/+1
| | | | Originally committed as revision 18249 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip creation of tests/data directory in individual regression test scripts.Diego Biurrun2009-03-302-6/+0
| | | | | | It is already being taken care of by the Makefile. Originally committed as revision 18248 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix timefilter test program build without previously building libavformat.Diego Biurrun2009-03-301-1/+1
| | | | | | The test program depends on symbols from this library. Originally committed as revision 18247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move generated file aynth1.sw to the data subdirectory. Thus it does not haveDiego Biurrun2009-03-302-5/+6
| | | | | | to be removed separately and there is less clutter in the tests directory. Originally committed as revision 18246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use correct PRId64 instead of "lld" in printf string, fixes compiler warnings.Reimar Döffinger2009-03-301-1/+1
| | | | Originally committed as revision 29107 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Rename regression.sh --> codec-regression.sh. Now all regression test scriptsDiego Biurrun2009-03-302-3/+3
| | | | | | carry the regression test they run as prefix in their name. Originally committed as revision 18245 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The definition of rate and distortion is not conditional of lambda beingMichael Niedermayer2009-03-301-2/+4
| | | | | | fixed (at least the current text sounded odd to me). Originally committed as revision 18244 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename server-regression.sh --> ffserver-regression.sh for consistency.Diego Biurrun2009-03-302-1/+1
| | | | Originally committed as revision 18243 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename servertest target to ffservertest.Diego Biurrun2009-03-301-1/+1
| | | | Originally committed as revision 18242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Rename 'do_libav' function to 'do_lavf'.Diego Biurrun2009-03-301-15/+15
| | | | Originally committed as revision 18241 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Simplify check for substream_parity_present.Ramiro Polla2009-03-301-2/+4
| | | | Originally committed as revision 18240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Simplify no restart header seen error.Ramiro Polla2009-03-301-6/+5
| | | | Originally committed as revision 18239 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Simplify substream length mismatch error.Ramiro Polla2009-03-301-5/+9
| | | | Originally committed as revision 18238 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Prettify substream parity check.Ramiro Polla2009-03-301-8/+6
| | | | Originally committed as revision 18237 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Cleaner and better termination word check.Ramiro Polla2009-03-301-11/+12
| | | | Originally committed as revision 18236 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: More validation for read_channel_params()Ramiro Polla2009-03-301-2/+10
| | | | Originally committed as revision 18235 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: whitespace cosmetics.Ramiro Polla2009-03-301-12/+6
| | | | Originally committed as revision 18234 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Simplify &foo[0] to foo and use index (which has just been initializedRamiro Polla2009-03-301-4/+4
| | | | | | | to MAX_BLOCKSIZE) instead of MAX_BLOCKSIZE, so both copies to/from state data look alike. Originally committed as revision 18233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Split filter_state_buffer into [fi]irbuf and fp to [fi]ir.Ramiro Polla2009-03-301-16/+17
| | | | Originally committed as revision 18232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Unroll copying filter state data and filtering for the two filters.Ramiro Polla2009-03-301-13/+15
| | | | Originally committed as revision 18231 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Max filter orders for FIR and IIR are 8 and 4 respectively.Ramiro Polla2009-03-302-12/+11
| | | | Originally committed as revision 18230 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename libav.regression.ref --> lavf.regression.ref.Diego Biurrun2009-03-291-0/+0
| | | | | | This matches the new name of the test target. Originally committed as revision 18229 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename libav.regression.ref --> lavf.regression.ref.Diego Biurrun2009-03-291-1/+1
| | | | | | This matches the new name of the test target. Originally committed as revision 18228 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename libavtest target to lavftest to better express what it tests.Diego Biurrun2009-03-291-5/+5
| | | | | | Also rename related variables to match the new name. Originally committed as revision 18227 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename test.conf --> ffserver.conf, the new name is more meaningful.Diego Biurrun2009-03-293-4/+4
| | | | Originally committed as revision 18226 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge the 3 COPY_FROM_* macros with lots of duplicated code into a singleReimar Döffinger2009-03-291-88/+21
| | | | | | copy_from function. Originally committed as revision 18225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change CHECK_STREAM_PTR macro to correctly handle the (extremely unlikely)Reimar Döffinger2009-03-291-1/+1
| | | | | | overflow case. Originally committed as revision 18224 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify check for leftover bytes after decoding for interplayvideo.Reimar Döffinger2009-03-291-2/+1
| | | | Originally committed as revision 18223 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of pointless "B" array in interplayvideo decoder.Reimar Döffinger2009-03-291-4/+1
| | | | Originally committed as revision 18222 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace many tiny loops in the interplayvideo decoder by memset, memcpyReimar Döffinger2009-03-291-39/+30
| | | | | | or initializers. Originally committed as revision 18221 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename seek_test.sh --> seek-regression.sh for greater consistency.Diego Biurrun2009-03-292-1/+1
| | | | Originally committed as revision 18220 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ipvideo_decode_block array constant, compile-time initialized insteadReimar Döffinger2009-03-291-19/+10
| | | | | | of initializing it each time the decoder is initialized. Originally committed as revision 18219 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Generalize example target rule in common.mak so that it sets a -example$(EXESUF)Diego Biurrun2009-03-291-1/+1
| | | | | | suffix for all example files instead of doing this in individual Makefiles. Originally committed as revision 29100 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Generalize example target rule in common.mak so that it sets a -example$(EXESUF)Diego Biurrun2009-03-293-3/+3
| | | | | | suffix for all example files instead of doing this in individual Makefiles. Originally committed as revision 18217 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename apiexample.c --> api-example.c to be consistent with other example files.Diego Biurrun2009-03-292-1/+1
| | | | Originally committed as revision 18216 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move swscale AltiVec template code to ppc subdirectory.Diego Biurrun2009-03-292-1/+1
| | | | Originally committed as revision 29099 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* AltiVec optimizations in libswscale are no longer GPL.Diego Biurrun2009-03-291-1/+1
| | | | Originally committed as revision 18215 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Relicense file to LGPL with the permission of Romain Dolbeau, the author.Diego Biurrun2009-03-291-8/+8
| | | | Originally committed as revision 29097 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
OpenPOWER on IntegriCloud