summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
Commit message (Collapse)AuthorAge
* Pictor/PC Paint decoderPeter Ross2010-06-08
| | | | Originally committed as revision 23532 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve grammar and readabilityRodney Baker2010-06-05
| | | | | | Patch by Rodney Baker, rodney dot baker at iinet dot net dot au Originally committed as revision 23499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move eval.c and eval.h from libavcodec to libavutil, and make the evalStefano Sabatini2010-06-05
| | | | | | API public. Originally committed as revision 23485 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify that get/release_buffer() overriding only works with CODEC_CAP_DR1 ↵Michael Niedermayer2010-06-03
| | | | | | codecs. Originally committed as revision 23457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document the frames returned by the decoder better.Michael Niedermayer2010-06-03
| | | | Originally committed as revision 23456 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VP8 encoding via libvpx.James Zern2010-06-03
| | | | | | Patch by James Zern, Google, Inc. Originally committed as revision 23449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement av_get_codec_tag_string() and use it in ffprobe.Stefano Sabatini2010-06-02
| | | | Originally committed as revision 23421 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ff_parse_expr() and ff_parse_and_eval_expr() return an intStefano Sabatini2010-06-01
| | | | | | | | | | | | containing an error code. Allow these functions to convey the reason of the failure to the calling function, failure which is not always due to a parsing error but it may depend for example on a memory problem. Also fix several potential memleaks. Originally committed as revision 23402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump minor version bump and add an APIchanges entry after addition ofStefano Sabatini2010-05-26
| | | | | | CODEC_CAP_EXPERIMENTAL. Originally committed as revision 23338 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump minor version and add Changelog entry after r23334.Carl Eugen Hoyos2010-05-26
| | | | Originally committed as revision 23337 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add CODEC_CAP_EXPERIMENTAL and prefer encoders without it.Janne Grunau2010-05-26
| | | | | | Patch by Janne Grunau, janne-ffmpeg jannau net Originally committed as revision 23334 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an AVSTREAM_PARSE_FULL_ONCE parsing mode to parse headers and combine ↵Alex Converse2010-05-26
| | | | | | packets once and only once. Originally committed as revision 23332 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VP8 decoding via libvpx.James Zern2010-05-25
| | | | | | Patch by James Zern for Google, Inc., jzern google com Originally committed as revision 23303 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document CODEC_FLAG_EMU_EDGE and avcodec_align_dimensions interaction.Reimar Döffinger2010-05-23
| | | | Originally committed as revision 23258 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ff_raw_pixelFormatTags symbol to ff_raw_pix_fmt_tags.Stefano Sabatini2010-05-20
| | | | | | The new name is shorter and consistent with the FFmpeg style. Originally committed as revision 23206 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump minor version for CODEC_ID_VP8David Conrad2010-05-19
| | | | Originally committed as revision 23194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add VP8 CODEC_IDGoogle2010-05-19
| | | | | | Patch by Google Originally committed as revision 23191 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add log_level_offset to AVCodecContext.Stefano Sabatini2010-05-17
| | | | Originally committed as revision 23153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the order of parameters for ff_eval_expr() andStefano Sabatini2010-05-16
| | | | | | | | | | ff_parse_and_eval_expr(), place the names for constants/functions before the corresponding values. This looks more readable, as the user is expected to know the names before the values. Originally committed as revision 23149 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Another try for fixing/improving decode_video documentation.Reimar Döffinger2010-05-08
| | | | Originally committed as revision 23057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add intra refresh and crf-max support to the libavcodec libx264 wrapper.Jason Garrett-Glaser2010-05-06
| | | | | | Minor version bump. Originally committed as revision 23038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify how allocation works for the picture argument forReimar Döffinger2010-05-02
| | | | | | avcodec_decode_video3. Originally committed as revision 23009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
| | | | | | | | Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add function to export EDGE_WIDTH from libavcodec.Bobby Bingham2010-04-01
| | | | Originally committed as revision 22753 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document API addition of avcodec_copy_context().Ronald S. Bultje2010-03-31
| | | | Originally committed as revision 22752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add avcodec_copy_context().Ronald S. Bultje2010-03-31
| | | | Originally committed as revision 22750 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas2010-03-31
| | | | | | Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move AVMediaType from libavcodec to libavutil.Stefano Sabatini2010-03-30
| | | | | | | | This allows applications/libraries which require that symbol (e.g. libavfilter) to be compiled without to depend on the presence of libavcodec/avcodec.h, which may not be installed. Originally committed as revision 22736 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add spectral extension to the E-AC-3 decoder.Carl Eugen Hoyos2010-03-30
| | | | | | | Original patch by Justin, updated and resubmitted by Christophe Gisquet, christophe D gisquet A gmail Originally committed as revision 22734 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement YOP demuxer and video decoder.Mohamed Naufal2010-03-29
| | | | | | Patch by Mohamed Naufal gmailify(naufal11). Originally committed as revision 22724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clearer CODEC_CAP_DR1 documentation.Reimar Döffinger2010-03-27
| | | | Originally committed as revision 22700 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable more libx264 options, aq, psy, rc lookahead and ssimBaptiste Coudurier2010-03-25
| | | | Originally committed as revision 22670 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump minor version, I forgot in the last commitVitor Sessak2010-03-23
| | | | Originally committed as revision 22650 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add doxygen docs for av_xiphlacingJosh Allmann2010-03-22
| | | | | | Patch by Josh Allmann (joshua allmann gmail com) Originally committed as revision 22632 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove avcodec_thread_execute from avcodec.h, and make static functions thatBenoit Fouet2010-03-15
| | | | | | need it in *thread.c. Originally committed as revision 22544 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CODEC_ID_XVID is not used anywhere, remove it at next major bumpAurelien Jacobs2010-03-13
| | | | Originally committed as revision 22511 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bump minor avcodec version for libxvid codec id change (r22489)Aurelien Jacobs2010-03-13
| | | | Originally committed as revision 22510 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move error code definitions from libavcodec/avcodec.h toStefano Sabatini2010-03-13
| | | | | | | | | | | | | libavutil/error.h. Error code definitions and handling code belong to libavutil, where they can be shared by all the libav* libraries. See the thread: Subject: [FFmpeg-devel] [PATCH] Move error codes definitions from lavc to lavu Date: Sun, 19 Jul 2009 12:09:16 +0200 Originally committed as revision 22501 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
* 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
* Add an HE-AAC v1 decoder.Alex Converse2010-03-08
| | | | | | | | | A large portion of this code was orignally authored by Robert Swain. The rest was written by me. Full history is available at: svn://svn.ffmpeg.org/soc/aac-sbr http://github.com/aconverse/ffmpeg-heaac/tree/sbr_pub Originally committed as revision 22316 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Create a public API for FFT family of functionsMåns Rullgård2010-03-07
| | | | Originally committed as revision 22291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase FF_INPUT_BUFFER_PADDING_SIZE to 64.Alex Converse2010-03-07
| | | | | | | The purpose of this is to give decoders a reasonable amount of buffer to work with before needing to check for overreads. Originally committed as revision 22288 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix avcodec_align_dimensions to return values suitably aligned for FLV decodingReimar Döffinger2010-02-27
| | | | | | | with SSE and add a avcodec_align_dimensions2 taht returns the stride alignment requirements independently from doing the width/height padding. Originally committed as revision 22095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typos in ref_index documentation.Benoit Fouet2010-02-26
| | | | Originally committed as revision 22072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify ref_index.Michael Niedermayer2010-02-26
| | | | Originally committed as revision 22068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bink video decoderKostya Shishkov2010-02-21
| | | | Originally committed as revision 21937 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Try to support truncated h264 frames mixed with mpeg pes headers in mkv.Michael Niedermayer2010-02-12
| | | | | | Fixes issue1585 Originally committed as revision 21772 to svn://svn.ffmpeg.org/ffmpeg/trunk