summaryrefslogtreecommitdiffstats
path: root/libavcodec/4xm.c
Commit message (Collapse)AuthorAgeFilesLines
* Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann2009-04-071-1/+3
| | | | | | | | | | | AVPacket argument rather than a const uint8_t *buf + int buf_size. This allows passing of packet-specific flags from demuxer to decoder, such as the keyframe flag, which appears necessary to playback corePNG P-frames. Patch by Thilo Borgmann thilo.borgmann googlemail com, see also the thread "Google Summer of Code participation" on the mailinglist. Originally committed as revision 18351 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing av_cold in static init/close functions.Daniel Verkamp2009-02-221-1/+1
| | | | | | Patch by Daniel Verkamp daniel at drv dot nu. Originally committed as revision 17526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-011-1/+1
| | | | | | | 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
* remove ff_get_fourcc() and use AV_RL32() insteadAurelien Jacobs2009-01-171-6/+6
| | | | Originally committed as revision 16654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun2009-01-111-0/+1
| | | | Originally committed as revision 16556 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
* Add long names to some AVCodec declarations.Stefano Sabatini2008-04-281-0/+1
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13010 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: typo fixesDiego Biurrun2008-03-221-1/+1
| | | | Originally committed as revision 12554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-211-3/+3
| | | | Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove more useless mpegvideo.h includesAurelien Jacobs2008-03-051-5/+5
| | | | Originally committed as revision 12323 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace get32() by AV_RL32().Michael Niedermayer2008-02-011-15/+11
| | | | Originally committed as revision 11755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-011-16/+16
| | | | Originally committed as revision 11754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cast to dest type, fix warning: 4xm.c:304: warning: initialization from ↵Baptiste Coudurier2008-01-311-1/+1
| | | | | | incompatible pointer type Originally committed as revision 11676 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix decoding of dracula.4xm before diego complainsMichael Niedermayer2007-09-051-7/+7
| | | | Originally committed as revision 10393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix segfault with dracula.4xmMichael Niedermayer2007-09-051-0/+10
| | | | | | closes issue132 Originally committed as revision 10392 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change 4xm demuxer and video decoder to pass the video format version inRoberto Togni2007-08-271-1/+6
| | | | | | extradata instead of codec_tag. Originally committed as revision 10253 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use bytestream_get_le*() this also fixes a big endian bugMichael Niedermayer2007-08-131-3/+4
| | | | Originally committed as revision 10104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix type 3 aka skipped blocks for old versionMichael Niedermayer2007-08-131-0/+2
| | | | Originally committed as revision 10097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix motion vectors for old versionMichael Niedermayer2007-08-131-1/+4
| | | | Originally committed as revision 10096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set pix_fmt properly depending on versionMichael Niedermayer2007-08-131-1/+2
| | | | Originally committed as revision 10095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use version instead of some random 32bit value to switch between 16 andMichael Niedermayer2007-08-131-1/+1
| | | | | | 32bit versions (this is more reliable, the old code failed on some files) Originally committed as revision 10094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace vlc_type by version and set that from codec_tag which contains theMichael Niedermayer2007-08-131-4/+3
| | | | | | 4xm video version from the demuxer Originally committed as revision 10093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support ifr2 from Toy-Story2_better-image-quality.4xaMichael Niedermayer2007-08-121-1/+48
| | | | Originally committed as revision 10091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add second vlc tableMichael Niedermayer2007-08-121-19/+46
| | | | | | | pfr* of Toy-Story2_better-image-quality.4xa are decoded now without bitstream errors Originally committed as revision 10089 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename attribute_unused to av_unused and moves its declaration to common.hCarl Eugen Hoyos2007-05-301-1/+1
| | | | | | | | patch by Carl Eugen Hoyos cehoyos chez ag or at original thread: [FFmpeg-devel] [PATCH] attribute_unused -> av_unused date: 05/29/2007 01:23 PM Originally committed as revision 9155 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change some leftover __attribute__((unused)) and __attribute__((used)) toReimar Döffinger2007-05-141-1/+1
| | | | | | attribute_unused and attribute_used respectively to ease compiling on non-gcc. Originally committed as revision 9024 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some old disabled debugging outputMichel Bardiaux2007-02-191-10/+0
| | | | Originally committed as revision 8027 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-071-4/+6
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix some signedness warningsMåns Rullgård2006-09-271-2/+2
| | | | Originally committed as revision 6355 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sanity checks, some might have been exploitable ...Michael Niedermayer2006-05-131-1/+5
| | | | Originally committed as revision 5369 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MSVC-compatible __align8/__align16 declarationSteve L'Homme2006-02-051-1/+1
| | | | | | patch by Steve Lhomme, steve .dot. lhomme .at. free .dot. fr Originally committed as revision 4942 to svn://svn.ffmpeg.org/ffmpeg/trunk
* warning fixes by Luca Abeni, lucabe72 ##@## email ##.## itDiego Biurrun2006-01-251-1/+1
| | | | Originally committed as revision 4898 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-121-1/+1
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-171-53/+53
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use PRIxN, %zd, %td formats where neededMåns Rullgård2005-12-121-1/+1
| | | | Originally committed as revision 4740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ministry of English Composition, reporting for duty (and the word is ↵Mike Melanson2005-04-241-4/+4
| | | | | | "skipped", not "skiped"; "skiped" would rhyme with "hyped") Originally committed as revision 4153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid buf_size == 0 checks in every decoderMichael Niedermayer2005-01-231-5/+0
| | | | Originally committed as revision 3872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* various security fixes and precautionary checksMichael Niedermayer2005-01-121-7/+17
| | | | Originally committed as revision 3822 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( ↵Burkhard Plaum2004-11-271-10/+5
| | | | | | de>) Originally committed as revision 3717 to svn://svn.ffmpeg.org/ffmpeg/trunk
* data_size = 0 cleanupMichael Niedermayer2004-05-211-2/+0
| | | | Originally committed as revision 3146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup & memleak fixMichael Niedermayer2004-04-301-2/+0
| | | | Originally committed as revision 3095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unknown format charsAlex Beregszaszi2004-04-071-1/+1
| | | | Originally committed as revision 2974 to svn://svn.ffmpeg.org/ffmpeg/trunk
* warning patrolFalk Hüffner2004-03-241-1/+1
| | | | Originally committed as revision 2925 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)Michel Bardiaux2003-11-031-13/+13
| | | | Originally committed as revision 2469 to svn://svn.ffmpeg.org/ffmpeg/trunk
* forgot to commit, i hope its correctMichael Niedermayer2003-10-111-0/+5
| | | | Originally committed as revision 2357 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation with cccFalk Hüffner2003-09-221-1/+1
| | | | Originally committed as revision 2298 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove warningsFabrice Bellard2003-09-091-1/+1
| | | | Originally committed as revision 2245 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix 4xm yuv->rgb565 transformMichael Niedermayer2003-06-011-9/+15
| | | | Originally committed as revision 1925 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l (array[-1] ...)Michael Niedermayer2003-06-011-11/+12
| | | | Originally committed as revision 1924 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 4xm codecMichael Niedermayer2003-06-011-0/+745
Originally committed as revision 1923 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud