summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* mlpdec: Check for blocksize in proper range.Ramiro Polla2009-03-27
| | | | 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-27
| | | | 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-27
| | | | Originally committed as revision 18209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: output_shift is signedRamiro Polla2009-03-27
| | | | Originally committed as revision 18208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Split read_channel_params() into its own function.Ramiro Polla2009-03-27
| | | | Originally committed as revision 18207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Split read_matrix_params() into its own function.Ramiro Polla2009-03-27
| | | | 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-27
| | | | Originally committed as revision 18202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use intptr_t when casting pointers to int.Ramiro Polla2009-03-26
| | | | Originally committed as revision 18192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fft-test does not depend on fdctref.o.Diego Biurrun2009-03-25
| | | | 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-25
| | | | 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-24
| | | | 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-24
| | | | | | 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-24
| | | | | | function Originally committed as revision 18175 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add MPEG-2 bitstream decoding through VA API.Gwenole Beauchesne2009-03-23
| | | | Originally committed as revision 18172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_class to AVResampleContext instead of ReSampleContext.Benoit Fouet2009-03-23
| | | | | | 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-23
| | | | 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-22
| | | | | | | r18164. Fix compilation. Originally committed as revision 18168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: cosmetics: white spaceJustin Ruggles2009-03-22
| | | | Originally committed as revision 18167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: cosmetics: separate the pure frame header parsing code fromJustin Ruggles2009-03-22
| | | | | | 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-22
| | | | | | '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-22
| | | | | | so that they can be enabled and disabled individually. Originally committed as revision 18164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the pixel formats which were defined as macros:Stefano Sabatini2009-03-22
| | | | | | | | | | | | | | | | | | | | | | PIX_FMT_ARGB PIX_FMT_RGBA PIX_FMT_ABGR PIX_FMT_BGRA defined as enum PixelFormat values, and viceversa make: PIX_FMT_RGB32 PIX_FMT_RGB32_1 PIX_FMT_BGR32 PIX_FMT_BGR32_1 defined as macros, also resort accordingly the enum PixelFormat list. Also make avcodec_get_pix_fmt() recognize the "rgb32" and "bgr32" aliases, in order to make ffmpeg pass regressions test. This change breaks ABI backward compatibility. Originally committed as revision 18163 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: allow sample rate to change mid-stream, but log a warningJustin Ruggles2009-03-22
| | | | | | message when it does Originally committed as revision 18162 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add rule for building API example programs.Diego Biurrun2009-03-22
| | | | Originally committed as revision 18161 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize: use the X_NE() macro in avcodec_get_pix_fmt().Stefano Sabatini2009-03-22
| | | | Originally committed as revision 18160 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: cosmetics: indentationJustin Ruggles2009-03-22
| | | | Originally committed as revision 18159 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement X_NE() macro.Stefano Sabatini2009-03-22
| | | | Originally committed as revision 18158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: change frame bps validation to return an error value if bpsJustin Ruggles2009-03-22
| | | | | | changes since this is not currently supported by the decoder. Originally committed as revision 18157 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: cosmetics: add some braces to if/else statementsJustin Ruggles2009-03-22
| | | | Originally committed as revision 18156 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: skip frame when allocated data size is too smallJustin Ruggles2009-03-22
| | | | Originally committed as revision 18155 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: don't check against current layout until after validating ch_mode.Justin Ruggles2009-03-22
| | | | | | should have been in last commit. Originally committed as revision 18154 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: give a more accurate error message when validating channelJustin Ruggles2009-03-22
| | | | | | layout. differentiates between invalid values and unsupported values. Originally committed as revision 18153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Export to pixdesc.h the av_pix_fmt_descriptors array.Stefano Sabatini2009-03-22
| | | | Originally committed as revision 18152 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: move data size check to flac_decode_frame()Justin Ruggles2009-03-22
| | | | Originally committed as revision 18151 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: comments and white space.Justin Ruggles2009-03-22
| | | | | | move skipping of frame header to decode_frame() Originally committed as revision 18150 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: vertical alignmentJustin Ruggles2009-03-22
| | | | Originally committed as revision 18149 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: remove unneeded local variableJustin Ruggles2009-03-22
| | | | Originally committed as revision 18148 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: cosmetics: rename 3 variablesJustin Ruggles2009-03-22
| | | | Originally committed as revision 18147 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: use a local variable for GetBitContext in decode_frame()Justin Ruggles2009-03-22
| | | | Originally committed as revision 18146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AURA 1 and 2 codec IDs and register their FOURCCsKostya Shishkov2009-03-22
| | | | Originally committed as revision 18141 to svn://svn.ffmpeg.org/ffmpeg/trunk
* init ext sample rate to 0 if not presentBaptiste Coudurier2009-03-22
| | | | Originally committed as revision 18139 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add common VA API data structures and helpers.Gwenole Beauchesne2009-03-22
| | | | Originally committed as revision 18136 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for HW accelerated VC-1 decoding through the newGwenole Beauchesne2009-03-21
| | | | | | AVHWAccel infrastructure. Originally committed as revision 18135 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the RGB5X5/BGR5X5 pixel format defines so that we have littleStefano Sabatini2009-03-21
| | | | | | | | endian and big endian variants instead of native-endian ones. This patch breaks API/ABI backward-compatibility. Originally committed as revision 18133 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend the behavior of avcodec_get_pix_fmt(), if it cannot find aStefano Sabatini2009-03-21
| | | | | | | pixel format for the provided name, make it look for the native endian variant of the name. Originally committed as revision 18130 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally prefer enum PixelFormat over int when it makes sense.Stefano Sabatini2009-03-21
| | | | Originally committed as revision 18129 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix reference to av_random_init where av_lfg_init was meant.Diego Biurrun2009-03-21
| | | | Originally committed as revision 18113 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make Smacker audio decoder output audio in original bit depthDaniel Verkamp2009-03-21
| | | | | | | | | Patch by Daniel Verkamp ($firstname) at (three-letter file extension for drivers in Win 3.1) dot (nu) Thread: [PATCH] Smacker: Output audio in original bit depth Originally committed as revision 18111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove deprecated functions and structures on next version bump.Diego Biurrun2009-03-21
| | | | Originally committed as revision 18110 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix avpicture_get_size for non-paletted formats with a helper paletteReimar Döffinger2009-03-21
| | | | | | | to not include the size of that palette. Also clarify its documentation. Originally committed as revision 18106 to svn://svn.ffmpeg.org/ffmpeg/trunk