summaryrefslogtreecommitdiff
path: root/libavcodec/rv10.c
Commit message (Collapse)AuthorAge
* 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
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add include to fix implicit declaration of ff_mpeg4_init_direct_mv andReimar Döffinger2010-01-31
| | | | | | ff_h263_encode_mba Originally committed as revision 21568 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split H263 encoder and decoder from common code.Michael Niedermayer2010-01-09
| | | | Originally committed as revision 21109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Store original width/height so that rv20 does not get stuck with someMichael Niedermayer2009-12-01
| | | | | | resolution. A sample file to show a difference is at issue833 (http://airfarce.com/video/000211fh.rm) Originally committed as revision 20691 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make rv1/2 decoder use the next slice if needed.Michael Niedermayer2009-12-01
| | | | | | Fixes issue782. Originally committed as revision 20690 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct order of arguments for avcodec_check_dimensions().Michael Niedermayer2009-11-23
| | | | Originally committed as revision 20590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure avcodec_set_dimensions() is used when rv20 changes resolution.Michael Niedermayer2009-11-23
| | | | | | This should fix lowres resolution changes. Originally committed as revision 20589 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split RV10 encoder off into its own file.Diego Biurrun2009-08-03
| | | | Originally committed as revision 19579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split RV20 encoder into its own file.Diego Biurrun2009-08-03
| | | | Originally committed as revision 19578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move AVCodec declarations for RV10/20 from mpegvideo_enc.c to rv10.c.Diego Biurrun2009-08-03
| | | | | | It is better to keep the declarations in conditionally compiled places. Originally committed as revision 19573 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove commented-out cruft.Diego Biurrun2009-08-02
| | | | Originally committed as revision 19566 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use dprintf() instead of '#ifdef DEBUG' and av_log().Diego Biurrun2009-07-28
| | | | Originally committed as revision 19528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove disabled function get_num().Diego Biurrun2009-07-27
| | | | | | It is small and has been disabled and unused for more than four years. Originally committed as revision 19520 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2009-05-23
| | | | Originally committed as revision 18921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix lowres with rv20.Michael Niedermayer2009-05-23
| | | | | | Fixes issue1102. Originally committed as revision 18920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of INIT_VLC_USE_STATIC in rv10/rv20.Michael Niedermayer2009-04-11
| | | | Originally committed as revision 18436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use INIT_VLC_USE_STATIC and not its value "1".Carl Eugen Hoyos2009-04-11
| | | | Originally committed as revision 18430 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann2009-04-07
| | | | | | | | | | | 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 and use ff_pixfmt_list_420.Michael Niedermayer2009-02-24
| | | | Originally committed as revision 17564 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix unknown header 10001000 / ↵Michael Niedermayer2009-02-03
| | | | | | http://samples.mplayerhq.hu/real/VC-RV10/thankyou.rm / issue809 Originally committed as revision 16967 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
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check extradata is large enough.Laurent Aimar2008-12-15
| | | | | | Patch by Laurent Aimar fenrir \:/ via ecp fr Originally committed as revision 16157 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling cosmeticsDiego Biurrun2008-10-02
| | | | Originally committed as revision 15518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace generic CONFIG_ENCODERS preprocessor conditionals by more specificDiego Biurrun2008-09-03
| | | | | | CONFIG_FOO_ENCODER conditionals where appropriate. Originally committed as revision 15174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bitstream: move put_sbits() from flacenc.c to bitstream.h and use itRamiro Polla2008-07-13
| | | | | | throughout libavcodec. Originally committed as revision 14204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-12
| | | | Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add long names to AVCodec declarations.Stefano Sabatini2008-04-27
| | | | | | 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-21
| | | | Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_ prefix to all (frame)_TYPE usageAurelien Jacobs2008-03-09
| | | | Originally committed as revision 12399 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11741 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentation after last commitKostya Shishkov2007-10-21
| | | | Originally committed as revision 10826 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make RV10/20 decoder work with new frame formatKostya Shishkov2007-10-21
| | | | Originally committed as revision 10825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use skip_bits where appropriateAlex Beregszaszi2007-08-09
| | | | Originally committed as revision 10004 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use get_bits1(..) instead get_bits(.., 1)Alex Beregszaszi2007-08-09
| | | | Originally committed as revision 9999 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Getting rid of the use of GCC language extensionsRoman Shaposhnik2007-07-08
| | | | Originally committed as revision 9531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check dimensions to avoid division by zero due to invalid new dimensions.Reimar Döffinger2007-03-11
| | | | | | Partially fixes http://bugzilla.mplayerhq.hu/show_bug.cgi?id=773. Originally committed as revision 8321 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename BE/LE_8/16/32 to AV_RL/B_8/16/32Alex Beregszaszi2007-01-19
| | | | Originally committed as revision 7587 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
* seems only 3 bits are used for the number of resolutions, some rv30 files ↵Michael Niedermayer2006-09-30
| | | | | | have this set to 10 even though there are just 2 resolutions in the extradata Originally committed as revision 6395 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ignore sub_idMichael Niedermayer2006-09-30
| | | | Originally committed as revision 6392 to svn://svn.ffmpeg.org/ffmpeg/trunk
* big endian fixMichael Niedermayer2006-09-30
| | | | Originally committed as revision 6391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support resolution switching, fixes rv20errors.rmMichael Niedermayer2006-09-30
| | | | Originally committed as revision 6390 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-09-29
| | | | Originally committed as revision 6389 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix rv20 b frames (broke since r5264 Mon Apr 3 07:52:24 2006 UTC 2x faster ↵Michael Niedermayer2006-09-29
| | | | | | ff_mpeg4_set_direct_mv) Originally committed as revision 6388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix decoding of bastard3.rm (ver=0x10003001 ver0=0x9000000)Michael Niedermayer2006-09-26
| | | | Originally committed as revision 6349 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix decoding of bastard1.rm (rv ver=0x10003001 ver0=0x8000000)Michael Niedermayer2006-09-26
| | | | Originally committed as revision 6346 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix SIGSEGV in rv10-null-pointer-500k.rm.Wolfgang Scherer2006-04-15
| | | | | | patch by Wolfgang Scherer, Wolfgang__ . __Scherer__ @ __gmx__ . __de Originally committed as revision 5293 to svn://svn.ffmpeg.org/ffmpeg/trunk