summaryrefslogtreecommitdiff
path: root/libavcodec/h263.c
Commit message (Collapse)AuthorAge
...
* Remove useless init from ff_mpeg4_set_direct_mv() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18583 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove several useless writes to variables, found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable in init_mv_penalty_and_fcode() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18557 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless assignment from h263_pred_dc() found by the clang static ↵Michael Niedermayer2009-04-17
| | | | | | analyzer. Originally committed as revision 18547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename pbBufPtr() to put_bits_ptr().Stefano Sabatini2009-04-13
| | | | | | | The new name is more readable and consistent with the FFmpeg naming style. Originally committed as revision 18497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Record MPEG-4 sprite trajectory points [up to num_sprite_warping_points][isY].Gwenole Beauchesne2009-03-30
| | | | Originally committed as revision 18250 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use intptr_t when casting pointers to int.Ramiro Polla2009-03-26
| | | | Originally committed as revision 18192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable PB-frames decoding for H.263Kostya Shishkov2009-03-03
| | | | Originally committed as revision 17746 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add PB-frame decoding support for H.263/i263 (and enable it for i263)Kostya Shishkov2009-03-03
| | | | Originally committed as revision 17745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factor out block decoding in ff_h263_decode_mb()Kostya Shishkov2009-03-02
| | | | Originally committed as revision 17734 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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