summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.c
Commit message (Collapse)AuthorAge
* remove STATS code (probably hasnt been used for years ..., and its not ↵Michael Niedermayer2006-07-09
| | | | | | completely clear what it was good for anyway) Originally committed as revision 5689 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make B-frame reduction sensitivity by b_strategy/vb_strategy = 1Corey Hickey2006-06-03
| | | | | | user-tunable. Originally committed as revision 5450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make b_frame_strategy not fail on pass 2, but still print a notice.Corey Hickey2006-05-29
| | | | Originally committed as revision 5425 to svn://svn.ffmpeg.org/ffmpeg/trunk
* h264: MBAFF interlaced decodingLoren Merritt2006-05-28
| | | | Originally committed as revision 5419 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MPEG-2 4:2:2 encoding supportBaptiste Coudurier2006-05-16
| | | | Originally committed as revision 5387 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add MPEG-2 intra vlc supportBaptiste Coudurier2006-05-13
| | | | Originally committed as revision 5372 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow insane gop sizes if the user doesnt care about playable streams ↵Michael Niedermayer2006-05-09
| | | | | | (doesnt want compliance to any standard) Originally committed as revision 5351 to svn://svn.ffmpeg.org/ffmpeg/trunk
* clip_uint8 now return an uint8_t so no need to &0xFFAurelien Jacobs2006-05-01
| | | | Originally committed as revision 5339 to svn://svn.ffmpeg.org/ffmpeg/trunk
* missmatch control for mpeg2 intra dequantization if bitexact=1Michael Niedermayer2006-04-28
| | | | Originally committed as revision 5328 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l in h264 vismb/vismv (broke on 2006-03-09)Loren Merritt2006-04-21
| | | | Originally committed as revision 5309 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove mpegvideo.c img resample dependancyMichael Niedermayer2006-03-31
| | | | Originally committed as revision 5258 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prefetch pixels for future motion compensation. 4-10% faster mpeg1/2/4 ↵Loren Merritt2006-03-23
| | | | | | decoding (on an athlon-xp). Originally committed as revision 5204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill some warningsMåns Rullgård2006-02-25
| | | | Originally committed as revision 5063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1 goto 1 fixMichael Niedermayer2006-02-06
| | | | Originally committed as revision 4946 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MSVC-compatible __align8/__align16 declarationSteve L'Homme2006-02-05
| | | | | | patch by Steve Lhomme, steve .dot. lhomme .at. free .dot. fr Originally committed as revision 4942 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-02-04
| | | | Originally committed as revision 4940 to svn://svn.ffmpeg.org/ffmpeg/trunk
* faster find_startcode()Michael Niedermayer2006-02-04
| | | | Originally committed as revision 4939 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix crash on height < 16 pixels.Loren Merritt2006-01-28
| | | | Originally committed as revision 4904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a newline to b_frame_strategy error message.Corey Hickey2006-01-27
| | | | Originally committed as revision 4903 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing bframe strategy 2Michael Niedermayer2006-01-27
| | | | | | | | bits vs. bytes factor of 8 error 16 byte offset error some other minor things Originally committed as revision 4902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-12
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* H.263: more descriptive error messageTom Joseph2006-01-04
| | | | | | patch by Tom Joseph < tom-lists @@ @ @@ jambon @@ dot @@ ll @@ dot @@ cx > Originally committed as revision 4812 to svn://svn.ffmpeg.org/ffmpeg/trunk
* second try of improved lambda/qp guessing for motion estimation RD in first passMichael Niedermayer2005-12-29
| | | | Originally committed as revision 4785 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support downscaling frames for dynamic b frame decissionMichael Niedermayer2005-12-25
| | | | Originally committed as revision 4776 to svn://svn.ffmpeg.org/ffmpeg/trunk
* b frame strategy 2Michael Niedermayer2005-12-25
| | | | Originally committed as revision 4774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* better f_code guessing in 2nd passMichael Niedermayer2005-12-22
| | | | Originally committed as revision 4766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improved lambda/qp guessing for motion estimation RD in first passMichael Niedermayer2005-12-22
| | | | | | this only affects encoding with bframes and rate control Originally committed as revision 4765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: tabs --> spaces, some prettyprintingDiego Biurrun2005-12-22
| | | | Originally committed as revision 4764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use correct qp & lambda for ME on the second passMichael Niedermayer2005-12-19
| | | | Originally committed as revision 4757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* forgotMichael Niedermayer2005-12-19
| | | | Originally committed as revision 4756 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix q=0 bugMichael Niedermayer2005-12-18
| | | | Originally committed as revision 4754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-17
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use PRIxN, %zd, %td formats where neededMåns Rullgård2005-12-12
| | | | Originally committed as revision 4740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* psnr calculation with threads>1 fixMichael Niedermayer2005-12-07
| | | | Originally committed as revision 4725 to svn://svn.ffmpeg.org/ffmpeg/trunk
* frame skip fixesMichael Niedermayer2005-11-05
| | | | | | | | fix 16pixel error in comparission fix vbv messup fix unlimited skip intervals, limited by GOP now Originally committed as revision 4678 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill a bunch of compiler warningsMåns Rullgård2005-08-14
| | | | Originally committed as revision 4522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix for overflow issue in mpegvideo.c patch by (Martin Boehme: boehme, inb ↵Martin Boehme2005-07-25
| | | | | | | | uni-luebeck de) this integer overflow might lead to the execution of arbitrary code during encoding with threads Originally committed as revision 4474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skip_idctMichael Niedermayer2005-07-14
| | | | | | | skip_frame skip_loop_filter Originally committed as revision 4440 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling fixesDiego Biurrun2005-06-17
| | | | | | patch by Peter Robinson pbrobinson @ at @ gmail . dot . com and myself Originally committed as revision 4382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix max b frames with b frame strategy 1Michael Niedermayer2005-05-21
| | | | Originally committed as revision 4300 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove/replace non-ascii charactersMåns Rullgård2005-05-13
| | | | Originally committed as revision 4237 to svn://svn.ffmpeg.org/ffmpeg/trunk
* b_frame_strategy sanity checkMichael Niedermayer2005-05-12
| | | | Originally committed as revision 4222 to svn://svn.ffmpeg.org/ffmpeg/trunk
* #defines for strict_std_compliance and split between inofficial extensions ↵Michael Niedermayer2005-05-08
| | | | | | and non standarized things Originally committed as revision 4205 to svn://svn.ffmpeg.org/ffmpeg/trunk
* overflow fixMichael Niedermayer2005-05-08
| | | | Originally committed as revision 4201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* complain about mpeg4 limits only if codec_id == MPEG4Michael Niedermayer2005-05-08
| | | | Originally committed as revision 4200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* put most codecs under ifdefsMichael Niedermayer2005-05-02
| | | | Originally committed as revision 4173 to svn://svn.ffmpeg.org/ffmpeg/trunk
* switch to native time basesMichael Niedermayer2005-04-30
| | | | Originally committed as revision 4168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ministry of English Composition, reporting for duty (and the word is ↵Mike Melanson2005-04-24
| | | | | | "skipped", not "skiped"; "skiped" would rhyme with "hyped") Originally committed as revision 4153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Spelling errors patch by (Kevin Baragona | kevinmb500 gawab com)Kevin Baragona2005-04-24
| | | | Originally committed as revision 4151 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove duplicate clip to 8bit functionMichael Niedermayer2005-04-20
| | | | Originally committed as revision 4143 to svn://svn.ffmpeg.org/ffmpeg/trunk