summaryrefslogtreecommitdiffstats
path: root/libavcodec
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-314-23/+24
| | | | 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
* 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
* 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
* 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
* 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 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
* mlpdec: Remove few random dprintf()s.Ramiro Polla2009-03-281-8/+0
| | | | Originally committed as revision 18212 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Check for blocksize in proper range.Ramiro Polla2009-03-271-2/+2
| | | | Originally committed as revision 18211 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: quant_step_size can be any value from 0 to 0xF.Ramiro Polla2009-03-271-1/+0
| | | | Originally committed as revision 18210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: output_shift can be any value from -8 to 7.Ramiro Polla2009-03-271-1/+0
| | | | Originally committed as revision 18209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: output_shift is signedRamiro Polla2009-03-271-1/+1
| | | | Originally committed as revision 18208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Split read_channel_params() into its own function.Ramiro Polla2009-03-271-37/+49
| | | | Originally committed as revision 18207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Split read_matrix_params() into its own function.Ramiro Polla2009-03-271-38/+50
| | | | Originally committed as revision 18206 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge some cases for reading raw data with different bit depths in BMPKostya Shishkov2009-03-271-14/+2
| | | | Originally committed as revision 18202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use intptr_t when casting pointers to int.Ramiro Polla2009-03-262-2/+2
| | | | Originally committed as revision 18192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fft-test does not depend on fdctref.o.Diego Biurrun2009-03-251-1/+0
| | | | Originally committed as revision 18190 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move adding the '-test$(EXESUF)' suffix to test programs into common.mak.Diego Biurrun2009-03-251-3/+3
| | | | Originally committed as revision 18189 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: add an @return to documentation for decode_frame_header()Justin Ruggles2009-03-241-0/+1
| | | | Originally committed as revision 18179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update apiexample.c to use the newer avcodec_decode_audio2() API. This alsoRobert Swain2009-03-241-1/+2
| | | | | | fixes compilation. Originally committed as revision 18176 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: split frame header decoding and validation into a separateJustin Ruggles2009-03-242-40/+68
| | | | | | function Originally committed as revision 18175 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add MPEG-2 bitstream decoding through VA API.Gwenole Beauchesne2009-03-232-0/+150
| | | | Originally committed as revision 18172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_class to AVResampleContext instead of ReSampleContext.Benoit Fouet2009-03-232-2/+2
| | | | | | Fixes issue 852. Originally committed as revision 18170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: Ignore cc_domain for independent (time domain) coupling.Alex Converse2009-03-231-8/+1
| | | | Originally committed as revision 18169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add pcxenc.o to the $OBJS list, it was erroneously removed from it inStefano Sabatini2009-03-221-0/+1
| | | | | | | r18164. Fix compilation. Originally committed as revision 18168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: cosmetics: white spaceJustin Ruggles2009-03-221-3/+3
| | | | Originally committed as revision 18167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: cosmetics: separate the pure frame header parsing code fromJustin Ruggles2009-03-221-32/+34
| | | | | | other frame header decoding code Originally committed as revision 18166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename 'tests' target to 'testprogs'. It is too easily confused with theDiego Biurrun2009-03-221-3/+3
| | | | | | 'test' target and a directory named tests exists. Originally committed as revision 18165 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split AVCodec declarations for PAM/PBM/PGM/PGMYUV/PPM decoders and encodersDiego Biurrun2009-03-223-21/+90
| | | | | | so that they can be enabled and disabled individually. Originally committed as revision 18164 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud