summaryrefslogtreecommitdiff
path: root/libavcodec/raw.c
Commit message (Collapse)AuthorAge
* Support fourcc YV24.ami_stuff2011-07-06
| | | | Fixes ticket #306.
* Support fourcc Y8 (ticket 308).ami_stuff2011-06-27
|
* Support fourcc YV16 (ticket 307).ami_stuff2011-06-27
|
* rawdec: fix decoding of QT WRAW filesami_stuff2011-05-25
| | | | | | | | | | | | | Fix decoding of QT WRAW files. From some tests it results that: 1. all of the AVI/MOV WRAW files (at least from the link posted to the trac ticket #108) need to be flipped 2. mov WRAW files need to use AVI color modes 3. assigning PAL8 mode by default to WRAW codec is not correct Fix decoding of file CarltonMovie2.mov, fix trac issue #108.
* Support Digital Voodoo SD 8 Bit in mov (ticket 195).Carl Eugen Hoyos2011-05-13
|
* Rename y400a to gray8a.Baptiste Coudurier2011-04-27
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Support fourcc auv2.ami_stuff2011-04-25
| | | | Fixes ticket #101.
* rawvideo codec: support PIX_FMT_BGR48LE and PIX_FMT_BGR48BEPeter Ross2011-03-26
|
* Support gray16be and rgb48be in movBaptiste Coudurier2010-06-15
| | | | Originally committed as revision 23608 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support to B4BY and R4BY NUT codec tags added in NUT r672.Stefano Sabatini2010-06-06
| | | | Originally committed as revision 23508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bgr/rgb444 for nutMichael Niedermayer2010-06-06
| | | | Originally committed as revision 23504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More mov rawvideo fourcc supported by the rawvideo decoderBaptiste Coudurier2010-06-04
| | | | Originally committed as revision 23481 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove weird empty line and perform vertical align.Stefano Sabatini2010-06-02
| | | | Originally committed as revision 23435 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for the newly added Nut codec tags (added in Nut r669):Stefano Sabatini2010-05-26
| | | | | | | Y1[00][16], [16][00]1Y, Y3[11][16], [16][11]3Y, Y3[10][16], [16][10]3Y, Y3[00][16], [16][00]3Y, Y4[11][ 8], Y2[00][ 8]. Originally committed as revision 23342 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
* Fix typo ('B', 'O', 'W', '1') => ('B', '0', 'W', '1')Benoit Fouet2010-05-17
| | | | Originally committed as revision 23150 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing rawvideo pixel formats to codec tags mappings for nut.Stefano Sabatini2010-05-16
| | | | Originally committed as revision 23146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add NV12 and NV21 AVI tags.Stefano Sabatini2010-05-16
| | | | | | Both are listed in fourcc.org. Originally committed as revision 23145 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reorder nut specific codec tags and add a comment for marking them asStefano Sabatini2010-05-09
| | | | | | | | | | | | such. Also put the [3][0][0][0] codec tag, mapped to rgb565le, in a special section. It needs to be specified *after* the nut RGB[16] codec tag, otherwise it will be used by default when encoding normal non-flipped rgb565le, and will be decoded like a flipped format (see rawdec.c:raw_init_decoder()). Originally committed as revision 23075 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing nut-specific codec tags for rawvideo pixel formats.Stefano Sabatini2010-05-09
| | | | | | | | | | | | | | | | | | Add codec tags for the formats: [15]BGR Packed RGB 5:5:5, 16bpp, (msb)1A 5R 5G 5B(lsb), big-endian [NOT in AVI] [15]RGB Packed BGR 5:5:5, 16bpp, (msb)1A 5B 5G 5R(lsb), big-endian [NOT in AVI] [16]BGR Packed RGB 5:6:5, 16bpp, (msb) 5R 6G 5B(lsb), big-endian [NOT in AVI] [16]RGB Packed BGR 5:6:5, 16bpp, (msb) 5B 6G 5R(lsb), big-endian [NOT in AVI] RGBA Packed RGBA 8:8:8:8, 32bpp, RGBA [NOT in AVI] BGRA Packed RGBA 8:8:8:8, 32bpp, BGRA [NOT in AVI] ABGR Packed RGBA 8:8:8:8, 32bpp, ABGR [NOT in AVI] ARGB Packed RGBA 8:8:8:8, 32bpp, ARGB [NOT in AVI] RGB[24] Packed RGB 8:8:8, 24bpp RGB [NOT in AVI] BGR[24] Packed RGB 8:8:8, 24bpp BGR [NOT in AVI] which are listed in the nut4cc.txt spec. Originally committed as revision 23074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the codec tags for the yuvjXXX pixel formats the same as theStefano Sabatini2010-05-09
| | | | | | corresponding ones for the yuvXXX pixel formats. Originally committed as revision 23073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support to the Y411 codec tag, corresponding to the rawvideo pixelStefano Sabatini2010-05-09
| | | | | | | | format uyyvyy411. The codec tag is referenced in fourcc.org. Originally committed as revision 23072 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
* Change ff_raw_pixelFormatTags RGB entries (RGB555, BGR555, RGB565,Stefano Sabatini2010-04-12
| | | | | | | | | BGR565, RGB565) to make them specify the tags for the LE variants rather than for the native endian ones. Fix NUT compatibility. Originally committed as revision 22866 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support decoding of SoftLab-NSK VideoTizer.ami_stuff2010-01-16
| | | | | | Patch by ami_stuff, ami_stuff o2 pl Originally committed as revision 21245 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support 2Vuy in mov, fixes issue 1690.ami_stuff2010-01-16
| | | | | | Patch by ami_stuff, ami_stuff o2 pl Originally committed as revision 21230 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support decoding of Avid uncompressed mov files, fixes issue 1685.Carl Eugen Hoyos2010-01-15
| | | | Originally committed as revision 21223 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support decoding Avid 1:1x codec, (partially) fixes issue1684.Carl Eugen Hoyos2010-01-15
| | | | Originally committed as revision 21222 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not assign codec_tag to pix_fmt in rawdec.c, but in raw.cCarl Eugen Hoyos2010-01-15
| | | | Originally committed as revision 21218 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add yuvs fourcc to raw.c and isom.c, fixes samples/mov/yuvs.movAndrew Wason2009-11-03
| | | | | | patch by Andrew Wason Originally committed as revision 20439 to svn://svn.ffmpeg.org/ffmpeg/trunk
* map VYUY fourcc to rawcodecBen Littler2009-11-02
| | | | | | fixes http://samples.mplayerhq.hu/V-codecs/ATI-VCR12/ATI/y422test.avi Originally committed as revision 20432 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add some raw codec fourccs, fixes:Ben Littler2009-10-27
| | | | | | | | | | | | samples/V-codecs/ P422.AVI UYNV.AVI UYNY.AVI V422.AVI YUNV.AVI Originally committed as revision 20379 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add new FOURCC (0x0003) for raw DIB video, set flip flag accordingly.Jason Garrett-Glaser2009-06-12
| | | | | | Fixes a few AVI files from what is probably a mobile phone video camera. Originally committed as revision 19172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support YVU9 AVI 4cc.Michael Niedermayer2009-05-26
| | | | | | Fixes issue1068. Originally committed as revision 18952 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Map MOV fourcc YUV2 correctly to PIX_FMT_YUYV422.Jai Menon2009-04-02
| | | | | | Patch by Jai Menon Originally committed as revision 18316 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-01
| | | | | | | Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-19
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* partial WRAW fourcc support, might need image flippingBaptiste Coudurier2008-12-04
| | | | Originally committed as revision 16000 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix some icc warnings by using enum PixelFormat instead of int where ↵Carl Eugen Hoyos2008-10-13
| | | | | | appropriate. Originally committed as revision 15611 to svn://svn.ffmpeg.org/ffmpeg/trunk
* HDYC fourcc, sample hdyc/Test2.aviBaptiste Coudurier2007-09-21
| | | | Originally committed as revision 10541 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split rawvideo encoder and decoder in their own filesAurelien Jacobs2007-07-09
| | | | Originally committed as revision 9560 to svn://svn.ffmpeg.org/ffmpeg/trunk
* compile rawvideo decoder on requestAlex Beregszaszi2007-04-21
| | | | Originally committed as revision 8767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* partial avid meridien uncompressed supportBaptiste Coudurier2007-03-03
| | | | Originally committed as revision 8203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* quicktime 'raw ' supportBaptiste Coudurier2007-03-01
| | | | Originally committed as revision 8168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace deprecated PIX_FMT names by the newer variants.Diego Biurrun2007-02-07
| | | | Originally committed as revision 7867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make some symbols staticMåns Rullgård2006-11-11
| | | | Originally committed as revision 6972 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 16bit in avi is RGB555Michael Niedermayer2006-11-09
| | | | Originally committed as revision 6956 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adds missing rgb/bgr 565 codec->fmt mappings, ok'ed by MichaelReynaldo H. Verdejo Pinochet2006-10-27
| | | | Originally committed as revision 6807 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adds missing rgb/bgr 555 codec->fmt mappings, ok'ed by MichaelReynaldo H. Verdejo Pinochet2006-10-27
| | | | Originally committed as revision 6806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk