summaryrefslogtreecommitdiff
path: root/libavcodec/h263.c
Commit message (Collapse)AuthorAge
* 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
* Correct the parameter order for the call to "av_clip".Harald Karnet2007-05-25
| | | | | | | Patch by Harald Karnet, harald karner % gmx net. Thread [FFmpeg-devel] [PATCH] Bugfix H.263+ encoder frame header corruption Originally committed as revision 9131 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicate #includes, avcodec.h #includes common.h.Diego Biurrun2007-05-11
| | | | Originally committed as revision 8995 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix possibly exploitable stack overflow with num_sprite_warping_points ↵Michael Niedermayer2007-05-06
| | | | | | (found by reimar) Originally committed as revision 8919 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l for myself, fixing --disable-encodersMichael Niedermayer2007-03-14
| | | | Originally committed as revision 8408 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill av_mallocz_static() calls in init_rl()Michael Niedermayer2007-03-14
| | | | Originally committed as revision 8402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont malloc() static mv_penalty arraysMichael Niedermayer2007-03-13
| | | | Originally committed as revision 8389 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give context to dprintfMichel Bardiaux2007-03-12
| | | | Originally committed as revision 8338 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_ prefix to clip functionsReimar Döffinger2007-02-25
| | | | Originally committed as revision 8122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix another common typo, dependAnt --> dependEnt.Diego Biurrun2007-02-24
| | | | Originally committed as revision 8114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* some interlaced direct sanity checksMichael Niedermayer2007-01-13
| | | | Originally committed as revision 7442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont randomly disallow intr4v in adaptive quantMichael Niedermayer2006-12-21
| | | | | | | | some PSNR/bitrate gain if adaptive quant is used initalize qscale_table correctly (it was pretty much random since the qp->lambda change) this probably has not much effect as the table isnt used currently IIRC Originally committed as revision 7342 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont randomly dissallow direct MBsMichael Niedermayer2006-12-21
| | | | | | some PSNR/bitrate gain for b frames with adaptive quant or QPRD Originally committed as revision 7341 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10000l to myself, fixing regression test failureMichael Niedermayer2006-11-09
| | | | Originally committed as revision 6953 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l for me, iam being to stupid to read the mpeg4 spec / eat stuffing mbs a ↵Michael Niedermayer2006-11-08
| | | | | | the end of the picture Originally committed as revision 6942 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add codec_tag and codec_stream_tag to MpegEncContext to not alter avctx valuesBaptiste Coudurier2006-11-07
| | | | Originally committed as revision 6930 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.Steve L'Homme2006-11-01
| | | | | | patch by Steve Lhomme, slhomme divxcorp com Originally committed as revision 6868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ABS macro to FFABS.Diego Biurrun2006-10-11
| | | | Originally committed as revision 6666 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
* 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
* dc_val should be signedMåns Rullgård2006-09-27
| | | | Originally committed as revision 6364 to svn://svn.ffmpeg.org/ffmpeg/trunk