aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/targaenc.c
Commit message (Expand)AuthorAgeFilesLines
* lavc: do not use av_pix_fmt_descriptors directlyPaul B Mahol2012-10-121-1/+1
* Write 32bit palette to Targa files.Carl Eugen Hoyos2012-10-091-3/+14
* Merge commit '716d413c13981da15323c7a3821860536eefdbbb'Michael Niedermayer2012-10-081-9/+9
|\
| * Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov2012-10-081-8/+8
* | targaenc: Use named TGA_RLE constant instead of magic numberBobby Bingham2012-09-181-1/+1
* | Fix typo in targa encoder commentBobby Bingham2012-09-181-1/+1
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-08-161-0/+3
|\|
| * Don't include common.h from avutil.hMartin Storsjö2012-08-151-0/+3
* | Merge commit '36ef5369ee9b336febc2c270f8718cec4476cb85'Michael Niedermayer2012-08-071-1/+1
|\|
| * Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-071-1/+1
* | Write palettised targa.Carl Eugen Hoyos2012-05-081-4/+14
* | Make targa-in-mov QuickTime-compatible for more colour-spaces.Carl Eugen Hoyos2012-04-191-0/+3
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-04-071-6/+9
|\|
| * cosmetics: Align codec declarationsMartin Storsjö2012-04-061-6/+9
* | cosmetics: remove superfluous curly bracketsPaul B Mahol2012-03-231-2/+1
* | targaenc: switch to ff_alloc_packet2().Michael Niedermayer2012-03-221-2/+1
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-02-211-29/+31
|\|
| * targaenc: switch to encode2().Anton Khirnov2012-02-201-26/+30
| * targaenc: don't modify input frame.Anton Khirnov2012-02-201-3/+1
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-06-041-1/+2
|\|
| * Replace avcodec_get_pix_fmt_name() by av_get_pix_fmt_name().Stefano Sabatini2011-06-031-1/+2
| * Replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*.Stefano Sabatini2011-05-021-1/+1
| * Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
| * Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-261-1/+1
* | 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
|/
* Add support for PIX_FMT_RGBA in the targa encoder.Stefano Sabatini2010-10-131-3/+7
* Use named constants defined in targa.h.Stefano Sabatini2010-10-131-3/+3
* Create a targa.h file to contain common definitions for targa encoderStefano Sabatini2010-10-131-0/+1
* Make the targa encoder return sane error values rather than -1.Stefano Sabatini2010-10-121-3/+3
* Targa encoder: log error message in case the pixel format in input isStefano Sabatini2010-10-121-0/+2
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-301-1/+1
* targeenc: fix rgb555 encoding on big endian systems.Alexis Ballier2010-03-081-2/+2
* Fix indentation after last commit.Benoit Fouet2009-10-011-1/+1
* Add support for TARGA images without RLE compression.Anne-Laure de Smit2009-10-011-1/+2
* Mark all pix_fmts and supported_framerates compound literals as const.Reimar Döffinger2009-09-061-1/+1
* Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun2009-01-111-0/+2
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-121-1/+1
* set coded_frameMichael Niedermayer2008-05-281-1/+11
* Replace some occurrences of -1 with PIX_FMT_NONE.Carl Eugen Hoyos2008-05-111-1/+1
* Prevent targaenc.c from outputting trash byte.Ramiro Polla2008-05-041-1/+1
* Add long names to some AVCodec declarations.Stefano Sabatini2008-04-291-0/+1
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-211-1/+1
* license header consistency cosmeticsDiego Biurrun2007-07-051-1/+0
* Changed the rle encoder a little and made it more universal.Xiaohui Sun2007-04-031-1/+1
* generic rle encoder by Bartlomiej Wolowiec b.wolowiec students mimuw edu plMichael Niedermayer2007-04-031-57/+8
* Add RLE encoding support, patch by Bobby Bingham, uhmmmm gmail com.Bobby Bingham2007-03-171-4/+95
* Move the encoding of the image data to its own function.Bobby Bingham2007-03-171-12/+19
* Add 15 bit support, patch by Bobby Bingham, uhmmmm gmail com.Bobby Bingham2007-03-171-2/+7
* Targa (.tga) encoder,Bobby Bingham2007-03-151-0/+96