summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.h
Commit message (Collapse)AuthorAge
* 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
* Rename copy_picture to ff_copy_picture.Carl Eugen Hoyos2008-10-02
| | | | Originally committed as revision 15508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a warning about an undefined function when compiling h264.cCarl Eugen Hoyos2008-09-29
| | | | Originally committed as revision 15462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix ref_shift so that it is correct for more/all? MBAFF/PAFF mixes.Michael Niedermayer2008-09-22
| | | | | | Fixes at least MR9_BT_B. Originally committed as revision 15380 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
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-31
| | | | | | | | | Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Picture.ref_count/ref_poc have to be stored per field (actually also perMichael Niedermayer2008-08-02
| | | | | | | | | | | slice but thats a seperate bug) Fixes at least: CABREF3_Sand_D.264 camp_mot_fld0_full.26l CVFI2_Sony_H.jsv CVNLFI2_Sony_H.jsv Originally committed as revision 14511 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix return type of ff_init_me().Michael Niedermayer2008-05-28
| | | | Originally committed as revision 13487 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
* move EDGE_WIDTH definition allong with draw_edges where it belongsAurelien Jacobs2008-03-05
| | | | Originally committed as revision 12322 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move relevant declarations to mpeg12data.hAurelien Jacobs2008-03-05
| | | | Originally committed as revision 12320 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move run length table constants to rl.hAurelien Jacobs2008-03-04
| | | | Originally committed as revision 12319 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_emulated_edge_mc() to dsputilAurelien Jacobs2008-03-04
| | | | Originally committed as revision 12318 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove old draw_edges declaration cruftAurelien Jacobs2008-03-04
| | | | Originally committed as revision 12312 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_init_scantable() into dsputilAurelien Jacobs2008-03-04
| | | | Originally committed as revision 12311 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegvideo.h has two function declarations with the 'inline' specifierUoti Urpala2008-02-03
| | | | | | | | | | | but no definition for those functions. The C standard requires a definition to appear in the same translation unit for any function declared with 'inline'. Most of the files including mpegvideo.h do not define those functions. Fix this by removing the 'inline' specifiers from the header. patch by Uoti Urpala Originally committed as revision 11830 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11761 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused symbol.Diego Pettenò2008-01-07
| | | | | | Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix some spelling mistakes.Diego Biurrun2007-12-02
| | | | Originally committed as revision 11125 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spellingVitor Sessak2007-12-01
| | | | Originally committed as revision 11122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add FFMPEG_ prefix to all multiple inclusion guards.Diego Biurrun2007-10-17
| | | | Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* export convert_matrix and add ff_ prefixBaptiste Coudurier2007-10-08
| | | | Originally committed as revision 10681 to svn://svn.ffmpeg.org/ffmpeg/trunk
* export DCT_common_init and add ff_prefixBaptiste Coudurier2007-10-08
| | | | Originally committed as revision 10680 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove alternative declaration of h263_encode_init()Aurelien Jacobs2007-10-03
| | | | | | It's never called in any code compiled without CONFIG_ENCODERS. Originally committed as revision 10655 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix declaration name from MPV_common_init_ppc to MPV_common_init_altivecAurelien Jacobs2007-10-03
| | | | Originally committed as revision 10654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless #ifdefAurelien Jacobs2007-10-03
| | | | Originally committed as revision 10653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetic preparations for h264/PAFF implementation.Jeff Downs2007-10-02
| | | | | | | | | patch by Jeff Downs, heydowns a borg d com original thread: Subject: [FFmpeg-devel] [PATCH] Implement PAFF in H.264 Date: 18/09/07 20:30 Originally committed as revision 10645 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
* simplify ff_h263_round_chroma()Michael Niedermayer2007-07-11
| | | | Originally committed as revision 9602 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_h263_round_chroma() to mpegvideo.h as static inlineMåns Rullgård2007-07-11
| | | | Originally committed as revision 9600 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
* trivial warning fixesMåns Rullgård2007-07-08
| | | | Originally committed as revision 9547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_copy_bits to bitstream.cAurelien Jacobs2007-07-06
| | | | Originally committed as revision 9503 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make DCT_common_init() staticAurelien Jacobs2007-07-05
| | | | Originally committed as revision 9482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2007-06-12
| | | | Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split ljpeg encoder out of mjpeg.cAurelien Jacobs2007-05-18
| | | | Originally committed as revision 9057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove some unused mjpeg encoding variablesAurelien Jacobs2007-05-14
| | | | | | (they were always set to a constant value) Originally committed as revision 9023 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a ff_ prefix to the now exported mpeg1_find_frame_end() functionAurelien Jacobs2007-05-05
| | | | Originally committed as revision 8902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move mpegvideo_parser in it's own fileAurelien Jacobs2007-05-05
| | | | Originally committed as revision 8901 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typos/grammarDiego Biurrun2007-04-07
| | | | Originally committed as revision 8641 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add doxy comments, based on Loren's explanations posted here:Guillaume Poirier2007-03-31
| | | | | | | Date: Mar 30, 2007 9:00 PM Subject: Re: [Ffmpeg-devel] Motion Estimation in snow.c for Waevelet encoded frames (DWT) Originally committed as revision 8579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move RLTable stuff to its own headerMichael Niedermayer2007-03-14
| | | | Originally committed as revision 8401 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skiprdMichael Niedermayer2006-12-23
| | | | Originally committed as revision 7365 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-21
| | | | | | 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
* throw error if unsupported resolution is used with h261Baptiste Coudurier2006-11-16
| | | | Originally committed as revision 7097 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
* move AVCodecParser prototypes and definitions to parser.h, and move ↵Baptiste Coudurier2006-11-06
| | | | | | mpegvideo parser to mpeg12.c Originally committed as revision 6914 to svn://svn.ffmpeg.org/ffmpeg/trunk
* lambda* should be unsignedMichael Niedermayer2006-10-28
| | | | Originally committed as revision 6824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fixes:Dominik Mierzejewski2006-10-08
| | | | | | | | rv10.c:494: warning: implicit declaration of function ‘ff_mpeg4_init_direct_mv’ Approved by Michael. Originally committed as revision 6595 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fixes:Dominik Mierzejewski2006-10-08
| | | | | | | | parser.c:555: warning: implicit declaration of function ‘ff_cavs_find_frame_end’ Approved by Michael. Originally committed as revision 6592 to svn://svn.ffmpeg.org/ffmpeg/trunk