summaryrefslogtreecommitdiffstats
path: root/libavcodec/gif.c
Commit message (Collapse)AuthorAgeFilesLines
...
| * Remove unnecessary AVFrame pointer casts.Diego Biurrun2012-03-011-1/+1
| |
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-02-241-6/+19
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: (40 commits) swf: check return values for av_get/new_packet(). wavpack: Don't shift minclip/maxclip rtpenc: Expose the max packet size via an avoption rtpenc: Move max_packet_size to a context variable rtpenc: Add an option for not sending RTCP packets lavc: drop encode() support for video. snowenc: switch to encode2(). snowenc: don't abuse input picture for storing information. a64multienc: switch to encode2(). a64multienc: don't write into output buffer when there's no output. libxvid: switch to encode2(). tiffenc: switch to encode2(). tiffenc: properly forward error codes in encode_frame(). lavc: drop libdirac encoder. gifenc: switch to encode2(). libvpxenc: switch to encode2(). flashsvenc: switch to encode2(). Remove libpostproc. lcl: don't overwrite input memory. swscale: take first/lastline over/underflows into account for MMX. ... Conflicts: .gitignore Makefile cmdutils.c configure doc/APIchanges libavcodec/Makefile libavcodec/allcodecs.c libavcodec/libdiracenc.c libavcodec/libxvidff.c libavcodec/qtrleenc.c libavcodec/tiffenc.c libavcodec/utils.c libavformat/mov.c libavformat/movenc.c libpostproc/Makefile libpostproc/postprocess.c libpostproc/postprocess.h libpostproc/postprocess_altivec_template.c libpostproc/postprocess_internal.h libpostproc/postprocess_template.c libswscale/swscale.c libswscale/utils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * gifenc: switch to encode2().Anton Khirnov2012-02-231-6/+19
| |
* | Mark one colour as transparent in the gif image encoderCarl Eugen Hoyos2011-12-081-1/+15
| | | | | | | | | | | | | | if the input palette contains at least one colour that is more than 50% transparent. Fixes ticket #715.
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-07-301-7/+7
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: mxfdec: Include FF_INPUT_BUFFER_PADDING_SIZE when allocating extradata. H.264: tweak some other x86 asm for Atom probe: Fix insane flow control. mpegts: remove invalid error check s302m: use nondeprecated audio sample format API lavc: use designated initialisers for all codecs. x86: cabac: add operand size suffixes missing from 6c32576 Conflicts: libavcodec/ac3enc_float.c libavcodec/flacenc.c libavcodec/frwu.c libavcodec/pictordec.c libavcodec/qtrleenc.c libavcodec/v210enc.c libavcodec/wmv2dec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavc: use designated initialisers for all codecs.Anton Khirnov2011-07-291-7/+7
| | | | | | | | It's more readable and less prone to breakage.
| * Replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*.Stefano Sabatini2011-05-021-1/+1
| | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
| * Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
| | | | | | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
| * Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-261-1/+1
| | | | | | | | | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
* | replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*Stefano Sabatini2011-05-021-1/+1
| |
* | Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-281-1/+1
|/ | | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit d36beb3f6902b1217beda576aa18abf7eb72b03c)
* In gif encoder, fix uninitialized value, patch by Clément Bœsch, ubitux at ↵Clément Bœsch2011-01-101-1/+1
| | | | | | gmail dot com Originally committed as revision 26303 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all remaining occurrences of AVERROR_NOMEM withStefano Sabatini2010-04-031-2/+2
| | | | | | | | | AVERROR(ENOMEM). AVERROR_NOMEM is deprecated and will be dropped at the next libavutil major bump. Originally committed as revision 22791 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-301-1/+1
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use lzw compression in gif encoderBaptiste Coudurier2009-12-031-40/+42
| | | | Originally committed as revision 20723 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pass avctx as argument instead of width and heightBaptiste Coudurier2009-12-021-14/+12
| | | | Originally committed as revision 20710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless paramsBaptiste Coudurier2009-12-021-2/+2
| | | | Originally committed as revision 20709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless paramsBaptiste Coudurier2009-12-021-4/+4
| | | | Originally committed as revision 20708 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move private context declaration at the topBaptiste Coudurier2009-12-021-4/+4
| | | | Originally committed as revision 20707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark all pix_fmts and supported_framerates compound literals as const.Reimar Döffinger2009-09-061-1/+1
| | | | | | Makes no difference for gcc but at least icc can put them in .rodata then. Originally committed as revision 19789 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename pbBufPtr() to put_bits_ptr().Stefano Sabatini2009-04-131-3/+3
| | | | | | | The new name is more readable and consistent with the FFmpeg naming style. Originally committed as revision 18497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split bitstream.h, put the bitstream writer stuff in the new fileStefano Sabatini2009-04-121-1/+1
| | | | | | put_bits.h. Originally committed as revision 18461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove no more needed fields in GIFContext, patch by Daniel Verkamp, daniel ↵Daniel Verkamp2009-02-091-2/+0
| | | | | | at drv dot nu Originally committed as revision 17096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove dead rgb24 code, gif encoder now directly takes palette, patch by ↵Daniel Verkamp2009-02-091-76/+5
| | | | | | Daniel Verkamp, daniel at drv dot nu Originally committed as revision 17095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove dead netscape loop header code in gif encoder, patch by Daniel ↵Daniel Verkamp2009-02-091-38/+2
| | | | | | Verkamp, daniel at drv dot nu Originally committed as revision 17094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix list of input pix_fmts supported by GIF. This makes it work with swscale.Michael Niedermayer2009-02-061-1/+1
| | | | | | | It also allows encoding GIF with a 4-bit palette and with a graycale one as a side effect. Originally committed as revision 17019 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-191-3/+3
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup gif, use BISTREAM_WRITER_LEBaptiste Coudurier2009-01-141-66/+9
| | | | Originally committed as revision 16591 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-121-1/+1
| | | | Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace some occurrences of -1 with PIX_FMT_NONE.Carl Eugen Hoyos2008-05-111-1/+1
| | | | | | Fixes icc warning #188: enumerated type mixed with another type Originally committed as revision 13130 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add long names to AVCodec declarations.Stefano Sabatini2008-04-271-0/+1
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-211-1/+1
| | | | Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace idiotic (what moron wrote that code?) "buffer overflow" message byMichael Niedermayer2008-01-171-1/+1
| | | | | | abort() Originally committed as revision 11546 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use AV_xx throughout libavcodecRamiro Polla2007-06-021-8/+2
| | | | Originally committed as revision 9169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change gif muxer to simple gif encoderBaptiste Coudurier2006-11-021-0/+350
Originally committed as revision 6874 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud