summaryrefslogtreecommitdiff
path: root/libavcodec/h263.c
Commit message (Collapse)AuthorAge
...
* Add ff_h263_find_resync_marker() to find the bit position of the next ↵Gwenole Beauchesne2009-02-24
| | | | | | | | | resync_marker, if any. patch by Gwenole Beauchesne gbeauchesne splitted-desktopcom based on suggested implementation by me Originally committed as revision 17560 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Better parsing of i263 picture headerKostya Shishkov2009-02-22
| | | | Originally committed as revision 17532 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove pointless '#if CONFIG_ENCODERS' around forward declarations.Diego Biurrun2009-02-04
| | | | Originally committed as revision 16992 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
* Make ff_h263_resync() return the bit position of the resync_marker orGwenole Beauchesne2009-01-30
| | | | | | | a negative number if none was found. Patch by Gwenolé Beauchesne: gbeauchesne splitted minus desktop com Originally committed as revision 16858 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use a constant instead of a magic number.Gwenole Beauchesne2009-01-30
| | | | | | Patch by Gwenolé Beauchesne: gbeauchesne splitted minus desktop com Originally committed as revision 16856 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid duplication of dquant_codeStefan Gehrer2009-01-24
| | | | Originally committed as revision 16742 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
* moves mid_pred() into mathops.h (with arch specific code split by directory)Aurelien Jacobs2009-01-18
| | | | Originally committed as revision 16681 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove ff_get_fourcc() and use AV_RL32() insteadAurelien Jacobs2009-01-17
| | | | Originally committed as revision 16654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* export gcd function as av_gcd()Aurelien Jacobs2009-01-17
| | | | Originally committed as revision 16653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace all occurrence of ENABLE_ by the corresponding CONFIG_, HAVE_ or ARCH_Aurelien Jacobs2009-01-14
| | | | | | and remove all ENABLE_ definitions. Originally committed as revision 16600 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
* Fix PTS returned by the demuxers for mpeg4 without a decoder.Michael Niedermayer2008-12-21
| | | | | | | More precissely fix has_b_frames. Fixes issue757 Originally committed as revision 16256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move CODEC_FLAG_LOW_DELAY into ff_mpeg4_decode_picture_header().Michael Niedermayer2008-12-21
| | | | Originally committed as revision 16255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* s/qp_t/qp_tt/ to avoid bad examples that could lead to issues with reservedMichael Niedermayer2008-12-11
| | | | | | namespaces of POSIX. Originally committed as revision 16065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* clear_block mmxLoren Merritt2008-12-10
| | | | Originally committed as revision 16045 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement complexity estimation parsing and try to detect an incorrectly setMichael Niedermayer2008-12-03
| | | | | | complexity estimation flag. Originally committed as revision 15993 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only warn about "Invalid and inefficient vfw-avi packed B frames" once.Andrew Savchenko2008-11-04
| | | | | | Patch by Andrew Savchenko, Bircoph at list dot ru Originally committed as revision 15772 to svn://svn.ffmpeg.org/ffmpeg/trunk
* uses FF_ARRAY_ELEMS() where appropriateAurelien Jacobs2008-10-21
| | | | Originally committed as revision 15662 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename error_resilience to error_recognition.Michael Niedermayer2008-09-08
| | | | Originally committed as revision 15270 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
* Allocate static tables on stack, not heap.Art Clarke2008-06-23
| | | | | | Patch by Art Clarke: aclarke vlideshow com Originally committed as revision 13907 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change init_vlc_rl() so it does not use *alloc_static() anymore.Michael Niedermayer2008-05-30
| | | | Originally committed as revision 13567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: spelling typo fixesDiego Biurrun2008-05-28
| | | | Originally committed as revision 13489 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: XviD is now called Xvid.Diego Biurrun2008-05-27
| | | | Originally committed as revision 13465 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Warn about packed B-frames. (especially useful if the file in question isMichael Niedermayer2008-05-26
| | | | | | not an avi ...) Originally committed as revision 13428 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement FFMAX3(a,b,c) - maximum over three arguments.Vladimir Voroshilov2008-04-19
| | | | Originally committed as revision 12910 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo: occured --> occurredDiego Biurrun2008-03-22
| | | | Originally committed as revision 12549 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo fixesDiego Biurrun2008-03-15
| | | | Originally committed as revision 12449 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
* Revert r11689 and r11690 (uninitalized warning fix) as its theoreticallyMichael Niedermayer2008-01-31
| | | | | | undefined in C. Originally committed as revision 11694 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Comment about weird warning prevention.Michael Niedermayer2008-01-31
| | | | Originally committed as revision 11690 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix "uninitalized" warning, the alternative way.Michael Niedermayer2008-01-31
| | | | | | | I hope this is valid C, flame me if not. md5sum of h263.o doesnt change, so this doesnt cause a slowdown. Originally committed as revision 11689 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert r11677, it is considered speed criticalBaptiste Coudurier2008-01-31
| | | | Originally committed as revision 11688 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix indentationBaptiste Coudurier2008-01-31
| | | | Originally committed as revision 11678 to svn://svn.ffmpeg.org/ffmpeg/trunk
* init to 0, fix warning: h263.c:4730: warning: 'dc_pred_dir' may be used ↵Baptiste Coudurier2008-01-31
| | | | | | uninitialized in this function Originally committed as revision 11677 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge some #ifdef CONFIG_ENCODERS sectionsAurelien Jacobs2007-10-03
| | | | Originally committed as revision 10656 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
* exchange the values of MV_DIR_FORWARD and MV_DIR_BACKWARD (this is more sane,Michael Niedermayer2007-08-01
| | | | | | matches the order of some other stuff and allows some simplifications) Originally committed as revision 9864 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove "Advanced Prediction Mode not supported" spamMichael Niedermayer2007-07-26
| | | | Originally committed as revision 9805 to svn://svn.ffmpeg.org/ffmpeg/trunk
* also support DEBUG_PICT_INFO for h263iMichael Niedermayer2007-07-26
| | | | Originally committed as revision 9804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move show_pict_info() to its own functionMichael Niedermayer2007-07-26
| | | | Originally committed as revision 9803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Better place to disable some mpeg4 code and ensure thatAurelien Jacobs2007-07-10
| | | | | | ff_write_quant_matrix() won't be used when mpeg4 encoder is disabled. Originally committed as revision 9579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move init_vlc_rl from h263.c to mpegvideo.cAurelien Jacobs2007-07-10
| | | | Originally committed as revision 9578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split ff_set_mpeg4_time() and move the non mpeg4 specific partAurelien Jacobs2007-07-10
| | | | | | into mpegvideo_enc.c. Originally committed as revision 9577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* don't compile some mpeg4 encoder code when encoders are disabledAurelien Jacobs2007-07-10
| | | | Originally committed as revision 9571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_set_qscale from h263.c to mpegvideo.cAurelien Jacobs2007-07-09
| | | | Originally committed as revision 9567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Group all copyright and author notices together.Diego Biurrun2007-07-05
| | | | Originally committed as revision 9483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc typo fixesDiego Biurrun2007-06-12
| | | | Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk