summaryrefslogtreecommitdiffstats
path: root/libavcodec/avcodec.h
Commit message (Collapse)AuthorAgeFilesLines
* avcodec: Add field order information to AVCodecParserContext.Masaki Tanaka2013-05-031-0/+2
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavc: schedule AVCodecContext.lowres for removal on next bump.Anton Khirnov2013-05-031-0/+4
| | | | | It has been deprecated some time ago, but was forgotten during the last bump.
* avcodec: doxy: Clarify how to use buf[] when implementing get_buffer2()Derek Buitenhuis2013-04-301-2/+4
| | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* avcodec: doxy: Clarify what get_buffer2 must fill in buf[]Derek Buitenhuis2013-04-301-2/+5
| | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* JPEG 2000 decoder for DCinemaNicolas Bertrand2013-04-221-0/+6
| | | | | | | | Based on the 2007 GSoC project from Kamil Nowosad <k.nowosad@students.mimuw.edu.pl> Updated to current programming standards, style and many more small fixes by Diego Biurrun <diego@biurrun.de>. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* h264: fully support cropping.Anton Khirnov2013-04-191-0/+5
| | | | | | Based on a patch by Vittorio Giovara <vittorio.giovara@gmail.com> Fixes Bug 378.
* lavc: extend / update the [coded_]{width,height} doxyAnton Khirnov2013-04-101-5/+9
|
* lavc: update the doxy for avcodec_decode_{video,audio} wtih refcounting.Anton Khirnov2013-03-191-11/+23
|
* Add av_log_{ask_for_sample|missing_feature} replacements to libavutilDiego Biurrun2013-03-131-0/+6
| | | | | This allows reporting missing features and requesting samples from all libraries in a standard way; with a simplified API.
* lavc: remove disabled FF_API_IDCT cruftAnton Khirnov2013-03-111-8/+0
|
* lavc: remove disabled FF_API_SNOW cruftAnton Khirnov2013-03-111-10/+0
|
* lavc: remove disabled FF_API_MMI cruftAnton Khirnov2013-03-111-3/+0
|
* lavc: remove disabled FF_API_LIBMPEG2 cruftAnton Khirnov2013-03-111-3/+0
|
* lavc: remove disabled FF_API_AVCODEC_RESAMPLE cruftAnton Khirnov2013-03-111-97/+0
|
* lavc: remove disabled FF_API_CODEC_ID cruftAnton Khirnov2013-03-091-8/+0
|
* lavc: remove disabled FF_API_FIND_BEST_PIX_FMT cruftAnton Khirnov2013-03-091-30/+0
|
* lavc: remove disabled FF_API_DSP_MASK cruftAnton Khirnov2013-03-091-8/+0
|
* lavc: remove disabled FF_API_SUB_ID cruftAnton Khirnov2013-03-091-7/+0
|
* lavc: remove disabled FF_API_INTER_THRESHOLD cruftAnton Khirnov2013-03-091-7/+0
|
* lavc: remove disabled FF_API_COLOR_TABLE_ID cruftAnton Khirnov2013-03-091-10/+0
|
* lavc: remove disabled FF_API_MPV_GLOBAL_OPTS cruftAnton Khirnov2013-03-091-29/+0
|
* lavc: remove disabled FF_API_OLD_ENCODE_VIDEO cruftAnton Khirnov2013-03-091-20/+0
|
* lavc: remove disabled FF_API_OLD_ENCODE_AUDIO cruftAnton Khirnov2013-03-091-30/+0
|
* lavc: remove disabled FF_API_OLD_DECODE_AUDIO cruftAnton Khirnov2013-03-091-65/+0
|
* lavc decoders: work with refcounted frames.Anton Khirnov2013-03-081-5/+118
|
* Move AVFrame from lavc to lavu.Anton Khirnov2013-03-081-347/+1
| | | | Add AVBuffer-based reference counting API to it.
* lavc: move AVFrame.hwaccel_picture_private to Picture.Anton Khirnov2013-03-081-4/+4
| | | | | This field is private and should not be present in a public struct. It is only used in DXVA with mpegvideo-based decoders currently.
* avpacket: use AVBuffer to allow refcounting the packets.Anton Khirnov2013-03-081-6/+36
| | | | | | This will allow us to avoid copying the packets in many cases. This breaks ABI.
* lavc: Deprecate the deinterlace functions in libavcodecRonald S. Bultje2013-03-071-0/+5
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* h264: Allow discarding the cropping information from SPSVittorio Giovara2013-01-251-0/+2
| | | | | | Some 3D systems overload the meaning of the field for other purposes. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* lavc: put FF_IDCT_{VP3,H264,CAVS,BINK,EA,WMV2} under FF_API_IDCT.Ronald S. Bultje2013-01-201-5/+7
| | | | | | This allows us to get rid of them on the next major bump. All of the above are functionally irrelevant, and most of them are unused, except the vp3 one, which is used wrongly in the bfin arch optimizations.
* mkv: support vp9 tagTom Finegan2013-01-141-0/+1
|
* Drop Snow codecDiego Biurrun2013-01-061-1/+7
| | | | Snow is a toy codec with no real-world use and horrible code.
* lavc: Correct the description of pkt_dtsMartin Storsjö2012-12-231-1/+1
| | | | | | | | | | The description as updated in 6e5c44b0f made it sound like it is handled exactly like the pts, which it is not. Clarify that it is the packet that triggered returning the frame instead of just the last avpacket (in case of frame threading, it won't be the dts of the last packet). Signed-off-by: Martin Storsjö <martin@martin.st>
* lavc: make pkt_{p,d}ts doxy less confusingAnton Khirnov2012-12-231-2/+2
|
* lavc: rewrite and extend AVFrame doxyAnton Khirnov2012-12-231-5/+13
|
* miscellaneous typo fixesDiego Biurrun2012-12-211-1/+1
|
* tak: demuxer, parser, and decoderPaul B Mahol2012-12-071-0/+1
| | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* lavc: clarify get_buffer() documentationJustin Ruggles2012-11-251-1/+6
| | | | | This is needed for the AAC decoder, which may need to call get_buffer() more than once if the channel configuration changes.
* pixdesc: add av_pix_fmt_get_chroma_sub_sampleLuca Barbato2012-11-131-1/+5
| | | | Deprecate avcodec_get_chroma_sub_sample.
* parser: Move Doxygen documentation to the header filesDiego Biurrun2012-11-021-0/+4
|
* PGS subtitles: Expose forced flagJohn Stebbins2012-11-021-0/+3
| | | | | | | Useful for detection of subtitles displayed during foreign language scenes. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* lavc: add some AVPacket doxy.Anton Khirnov2012-11-021-0/+22
|
* avcodec: Add a RFC 3389 comfort noise codecMartin Storsjö2012-10-291-0/+1
| | | | | | | | | | This isn't too useful as a normal codec, but can be used in voip style applications. The decoder updates the noise generator parameters when a packet is given to it for decoding, but if called with an empty packet, it generates more noise according to the last parameters. Signed-off-by: Martin Storsjö <martin@martin.st>
* lavc: fix documentation for AVCodecContext.delayJustin Ruggles2012-10-231-1/+1
|
* lavc: extend frame_size doxy.Anton Khirnov2012-10-221-1/+7
|
* lavc: update documentation for AVFrame.extended_dataJustin Ruggles2012-10-141-1/+1
|
* avcodec: Remove broken MMI optimizationsDiego Biurrun2012-10-121-0/+2
| | | | The code fails to compile and is broken beyond repair.
* Remove libmpeg2 #define remnantsDiego Biurrun2012-10-121-0/+2
|
* Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov2012-10-081-25/+26
|
OpenPOWER on IntegriCloud