summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
Commit message (Collapse)AuthorAge
* deprecate av_mallocz_static()Michael Niedermayer2007-03-13
| | | | Originally committed as revision 8388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add avcodec_get_context_defaults2() / avcodec_alloc_context2() which take ↵Michael Niedermayer2007-03-07
| | | | | | | | CodecType as an additional parameter also mark them as NOT part of the public API yet, so we can change their argument to CodecID if we decide to do so Originally committed as revision 8283 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add the prefix "av_" to img_crop(), img_copy() and img_pad(), and rename "img"Panagiotis Issaris2007-03-04
| | | | | | to "picture" as suggested by Baptiste Coudurier. Originally committed as revision 8220 to svn://svn.ffmpeg.org/ffmpeg/trunk
* imx dump header bitstream filter, modifies bitstream to fit in mov and be ↵Baptiste Coudurier2007-03-04
| | | | | | decoded by final cut pro decoder Originally committed as revision 8218 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dummy support for mpeg2 non linear quantBaptiste Coudurier2007-03-04
| | | | Originally committed as revision 8215 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support feeding individual NAL units to the decoder instead of just complete ↵Michael Niedermayer2007-03-02
| | | | | | frames Originally committed as revision 8197 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add documentation to some avcodec.h's pix_fmt related functions and defines.Panagiotis Issaris2007-03-01
| | | | Originally committed as revision 8171 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of CODEC_FLAG_H263P_AIC with next major bumpBaptiste Coudurier2007-03-01
| | | | Originally committed as revision 8167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* define MPEG4AAC id to AAC, and get rid of it and MP3LAME id with next major bumpBaptiste Coudurier2007-03-01
| | | | Originally committed as revision 8166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of rtp_mode field after next major bumpBaptiste Coudurier2007-02-28
| | | | Originally committed as revision 8164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* DCA decoderKostya Shishkov2007-02-27
| | | | Originally committed as revision 8141 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the unaltered documentation of the functions which are part of the publicPanagiotis Issaris2007-02-25
| | | | | | API out of imgconvert.c into avcodec.h. Originally committed as revision 8121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix another common typo, dependAnt --> dependEnt.Diego Biurrun2007-02-24
| | | | Originally committed as revision 8114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add CODEC_TYPE_NB to enum CodecType, will be used to declare option arrays ↵Benoit Fouet2007-02-23
| | | | | | | | in ffmpeg.c Patch by Benoit Fouet % benoit P fouet A purplelabs P com % Originally committed as revision 8096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the av_realloc_static() declaration out of avcodec.h into bitstream.c.Panagiotis Issaris2007-02-22
| | | | Originally committed as revision 8088 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygenize the comments for the av_fast_realloc() function.Panagiotis Issaris2007-02-22
| | | | Originally committed as revision 8086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygenize the comments for the av_free_static() function.Panagiotis Issaris2007-02-22
| | | | Originally committed as revision 8085 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygenize the comments for the av_mallocz_static() function.Panagiotis Issaris2007-02-22
| | | | Originally committed as revision 8084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygenize the comments for the av_realloc_static() function.Panagiotis Issaris2007-02-22
| | | | Originally committed as revision 8083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygenize the comments for the av_get_bits_per_sample() function.Panagiotis Issaris2007-02-22
| | | | Originally committed as revision 8082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygenize the comments for the av_get_pict_type_char() function.Panagiotis Issaris2007-02-22
| | | | Originally committed as revision 8081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygenize the comments for the avpicture_free() function.Panagiotis Issaris2007-02-22
| | | | Originally committed as revision 8080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the Doxygen function documentation unaltered from libavcodec/utils.c toPanagiotis Issaris2007-02-22
| | | | | | libavcodec/avcodec.h. Originally committed as revision 8079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add more Doxygen documentation.Panagiotis Issaris2007-02-22
| | | | Originally committed as revision 8078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct typo.Panagiotis Issaris2007-02-21
| | | | Originally committed as revision 8058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix another common typo, gurantee --> guArantee.Diego Biurrun2007-02-21
| | | | Originally committed as revision 8054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for MS-GSM codecMichel Bardiaux2007-02-20
| | | | Originally committed as revision 8039 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove imgresample and convert with the next version bumpMichael Niedermayer2007-02-17
| | | | Originally committed as revision 8005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* This fixes error handling for BeOS, removing the need for some ifdefs.François Revol2007-02-13
| | | | | | | | | AVERROR_ defines are moved to avcodec.h as they are needed in there as well. Feel free to move that to avutil/common.h. Bumped up avcodec/format version numbers as though it's binary compatible we will want to rebuild apps as error values changed. Please from now on use return AVERROR(EFOO) instead of the ugly return -EFOO in your code. This also removes the need for berrno.h. Originally committed as revision 7965 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ac3 decoder to liba52 to prepare for native decoder.Diego Biurrun2007-02-11
| | | | Originally committed as revision 7939 to svn://svn.ffmpeg.org/ffmpeg/trunk
* wma encoderMichael Niedermayer2007-02-06
| | | | Originally committed as revision 7855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revised patch for HD DVD .EVO demuxing by (Ian Caulfield <lowercase name ↵Michael Niedermayer2007-02-06
| | | | | | seperated by . place at here gmail place a dot here com>) Originally committed as revision 7853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* BMP encoder by Michel Bardiaux, mbardiaux mediaxim beDiego Biurrun2007-02-05
| | | | Originally committed as revision 7824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VC-1 parserKostya Shishkov2007-02-03
| | | | Originally committed as revision 7809 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert accidental checkinMåns Rullgård2007-02-01
| | | | Originally committed as revision 7800 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove redundant loadsMåns Rullgård2007-02-01
| | | | Originally committed as revision 7798 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARMv6 SIMD IDCTMåns Rullgård2007-01-28
| | | | Originally committed as revision 7752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* TypoPanagiotis Issaris2007-01-26
| | | | Originally committed as revision 7717 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Theora encoding via libtheora.Diego Biurrun2007-01-25
| | | | | | courtesy of Paul Richards, paul.richards gmail com Originally committed as revision 7698 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Sort decoder/encoder/parser variables lists.Diego Biurrun2007-01-21
| | | | Originally committed as revision 7630 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: List all encoders together.Diego Biurrun2007-01-21
| | | | Originally committed as revision 7626 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flash screen video encoder.Benjamin Larsson2007-01-21
| | | | Originally committed as revision 7615 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avcodec_decode_audio2()Michael Niedermayer2007-01-14
| | | | | | difference to avcodec_decode_audio() is that the user can pass the allocated size of the output buffer to the decoder and the decoder can check if theres enough space Originally committed as revision 7518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Musepack SV7 decoding supportKostya Shishkov2006-12-24
| | | | Originally committed as revision 7375 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skiprdMichael Niedermayer2006-12-23
| | | | Originally committed as revision 7365 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for VP60 and VP61.Aurelien Jacobs2006-12-17
| | | | Originally committed as revision 7329 to svn://svn.ffmpeg.org/ffmpeg/trunk
* lavc is at major version 51, delete old stuffMåns Rullgård2006-12-08
| | | | Originally committed as revision 7257 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add codec ID for a native H.264 encoder.Panagiotis Issaris2006-12-07
| | | | Originally committed as revision 7246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ZMBV encoderKostya Shishkov2006-12-07
| | | | Originally committed as revision 7242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use the standard INT64_C() macro for 64-bit constantsMåns Rullgård2006-12-06
| | | | Originally committed as revision 7240 to svn://svn.ffmpeg.org/ffmpeg/trunk