summaryrefslogtreecommitdiffstats
path: root/libavcodec/mpegvideo.c
Commit message (Collapse)AuthorAgeFilesLines
* move ff_h263_round_chroma() to mpegvideo.h as static inlineMåns Rullgård2007-07-111-14/+0
| | | | Originally committed as revision 9600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move init_vlc_rl from h263.c to mpegvideo.cAurelien Jacobs2007-07-101-0/+53
| | | | Originally committed as revision 9578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_set_qscale from h263.c to mpegvideo.cAurelien Jacobs2007-07-091-0/+16
| | | | Originally committed as revision 9567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Group all copyright and author notices together.Diego Biurrun2007-07-051-2/+2
| | | | Originally committed as revision 9483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make DCT_common_init() staticAurelien Jacobs2007-07-051-1/+1
| | | | Originally committed as revision 9482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move mpeg encoder specific initialization in the encoder specific fileAurelien Jacobs2007-07-051-13/+0
| | | | Originally committed as revision 9480 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Description: split mpegvideo.cBenoit Fouet2007-07-031-4572/+4
| | | | Originally committed as revision 9467 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move dct_quantize and denoise_dct function pointers initialization to CBenoit Fouet2007-06-201-5/+4
| | | | | | functions after arch dependant initializations Originally committed as revision 9375 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unused constant definitionBenoit Fouet2007-06-201-3/+0
| | | | Originally committed as revision 9372 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aanscales is used only with CONFIG_ENCODERSBenoit Fouet2007-06-191-0/+2
| | | | Originally committed as revision 9370 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify init preprocessor statements.Albert Lee2007-06-141-13/+7
| | | | | | patch by Albert Lee, trisk+xine acm.jhu edu Originally committed as revision 9307 to svn://svn.ffmpeg.org/ffmpeg/trunk
* integrating MPV_common_init_bfin into the build system and mpegvideo.cMarc Hoffman2007-06-121-0/+3
| | | | Originally committed as revision 9294 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc typo fixesDiego Biurrun2007-06-121-2/+3
| | | | Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2007-06-121-3/+3
| | | | Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant fastmemcpy.h #include, it is indirectly #included by avutil.h.Diego Biurrun2007-05-281-4/+0
| | | | Originally committed as revision 9145 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use AV_LOG_ERROR instead of INFO for errorsMichael Niedermayer2007-05-201-3/+3
| | | | Originally committed as revision 9078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sanity checks for bitrate tolerance and buffer size (= fail if a single ↵Michael Niedermayer2007-05-201-0/+10
| | | | | | | | frame at the requested bitrate would be bigger than the buffer size) Originally committed as revision 9077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move the mjpeg_encoder struct from mpegvideo.c to mjpegenc.cAurelien Jacobs2007-05-181-13/+0
| | | | Originally committed as revision 9059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a proper prefix to all mjpeg encoder exported functionsAurelien Jacobs2007-05-181-6/+7
| | | | Originally committed as revision 9058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split ljpeg encoder out of mjpeg.cAurelien Jacobs2007-05-181-0/+1
| | | | Originally committed as revision 9057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove some unused mjpeg encoding variablesAurelien Jacobs2007-05-141-2/+0
| | | | | | (they were always set to a constant value) Originally committed as revision 9023 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentAurelien Jacobs2007-05-131-2/+3
| | | | Originally committed as revision 9014 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace some #ifdef CONFIG_* by if(ENABLE_*)Aurelien Jacobs2007-05-131-21/+8
| | | | Originally committed as revision 9013 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationAurelien Jacobs2007-05-121-2/+3
| | | | Originally committed as revision 9012 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make compilation of mjpeg.c optionalAurelien Jacobs2007-05-121-4/+8
| | | | Originally committed as revision 9011 to svn://svn.ffmpeg.org/ffmpeg/trunk
* jpegls never call this code, so those tests are uselessAurelien Jacobs2007-05-121-2/+1
| | | | Originally committed as revision 9009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: reindentAurelien Jacobs2007-05-101-2/+4
| | | | Originally committed as revision 8986 to svn://svn.ffmpeg.org/ffmpeg/trunk
* disable reference to msmpeg4 and wmv2 code when those codecs are not compiled inAurelien Jacobs2007-05-101-6/+9
| | | | Originally committed as revision 8975 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill av_mallocz_static() calls in init_rl()Michael Niedermayer2007-03-141-8/+8
| | | | Originally committed as revision 8402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticMichael Niedermayer2007-03-131-6/+3
| | | | Originally committed as revision 8392 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove silly static int done protecting the initalization of 32 elements to 1Michael Niedermayer2007-03-131-4/+1
| | | | Originally committed as revision 8391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove redundant memset()Michael Niedermayer2007-03-131-2/+0
| | | | Originally committed as revision 8390 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont malloc() static mv_penalty arraysMichael Niedermayer2007-03-131-2/+1
| | | | Originally committed as revision 8389 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dummy support for mpeg2 non linear quantBaptiste Coudurier2007-03-041-0/+12
| | | | Originally committed as revision 8215 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of CODEC_FLAG_H263P_AIC with next major bumpBaptiste Coudurier2007-03-011-1/+1
| | | | Originally committed as revision 8167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_ prefix to clip functionsReimar Döffinger2007-02-251-21/+21
| | | | Originally committed as revision 8122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Spelling fixMichel Bardiaux2007-02-151-1/+1
| | | | Originally committed as revision 7988 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix warnings and simplify/reorder the codeLuca Barbato2007-01-271-20/+11
| | | | Originally committed as revision 7726 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix inifnite loop with http://sam.zoy.org/zzuf/lol-mplayer.mpgMichael Niedermayer2007-01-261-1/+1
| | | | Originally committed as revision 7718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add hint for closed gop and sc threshold error messageBaptiste Coudurier2007-01-241-1/+1
| | | | Originally committed as revision 7692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set last_picture for h.264 too, this significantly improves error ↵Michael Niedermayer2007-01-241-2/+2
| | | | | | concealment quality, i hope it doesnt break anything as last_picture_ptr was always NULL for h.264 Originally committed as revision 7686 to svn://svn.ffmpeg.org/ffmpeg/trunk
* some interlaced direct sanity checksMichael Niedermayer2007-01-131-0/+1
| | | | Originally committed as revision 7442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skiprdMichael Niedermayer2006-12-231-1/+34
| | | | Originally committed as revision 7365 to svn://svn.ffmpeg.org/ffmpeg/trunk
* more simplificationAurelien Jacobs2006-12-211-3/+1
| | | | Originally committed as revision 7352 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lMichael Niedermayer2006-12-211-0/+5
| | | | Originally committed as revision 7351 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FIXME has already been fixed ages agoMichael Niedermayer2006-12-211-1/+1
| | | | Originally committed as revision 7348 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-12-211-1/+1
| | | | Originally committed as revision 7347 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use qscale_table in adaptive quantMichael Niedermayer2006-12-211-0/+1
| | | | | | some PSNR/bitrate improvement for adaptive quant Originally committed as revision 7346 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skip motion estimation and encoding of non direct-0,0 MBs if the next MB is ↵Michael Niedermayer2006-12-211-2/+10
| | | | | | skiped (mpeg4 doesnt allow such MBs and in the past we did ME and encoding until at the end we droped them, so this should be faster though i didnt benchmark it, benchmark welcome) Originally committed as revision 7343 to svn://svn.ffmpeg.org/ffmpeg/trunk
* try direct mode MB after QPRD, slight PSNR/bitrate gain if b frames + QPRDMichael Niedermayer2006-12-201-12/+12
| | | | Originally committed as revision 7336 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud