summaryrefslogtreecommitdiff
path: root/libavcodec/h263.h
Commit message (Collapse)AuthorAge
* Fix grammar errors in documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add lots of missing includesMåns Rullgård2010-03-08
| | | | Originally committed as revision 22337 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move ff_set_qscale() prototype to mpegvideo.h; it is defined in mpegvideo.cMåns Rullgård2010-03-06
| | | | Originally committed as revision 22262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split H263 encoder and decoder from common code.Michael Niedermayer2010-01-09
| | | | Originally committed as revision 21109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename most non static h263 tables so their name contains h263.Michael Niedermayer2010-01-08
| | | | Originally committed as revision 21098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split the mpeg4 encoder and decoder off h263.cMichael Niedermayer2010-01-07
| | | | Originally committed as revision 21079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of pointless CONFIG_ANY_H263 preprocessor definition.Diego Biurrun2009-12-30
| | | | Originally committed as revision 20975 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Eliminate CONFIG_ANY_H263_DECODER preprocessor definition.Diego Biurrun2009-12-30
| | | | | | | It is just a logical OR of several decoder definitions, all of which depend on CONFIG_H263_DECODER. So it can just be replaced by the latter. Originally committed as revision 20973 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of pointless CONFIG_WMV_DECODER definition.Diego Biurrun2009-12-30
| | | | Originally committed as revision 20972 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify CONFIG_ANY_H263_DECODER preprocessor definition:Diego Biurrun2009-12-30
| | | | | | There is no need to list decoders that enable the H.263 decoder anyway. Originally committed as revision 20970 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace CONFIG_ANY_H263_ENCODER definition by CONFIG_H263_ENCODER.Diego Biurrun2009-12-28
| | | | | | | CONFIG_ANY_H263_ENCODER is just a logical OR of H.263 family definitions, for which the build system enables CONFIG_H263_ENCODER anyway. Originally committed as revision 20950 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not redundantly check for preprocessor definitions of CONFIG_RV10_ENCODER orDiego Biurrun2009-08-05
| | | | | | | CONFIG_RV20_ENCODER when also checking for CONFIG_H263_ENCODER. The RV10/RV20 encoders depend on the H.263 encoder. Originally committed as revision 19593 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
* 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
* Add FFMPEG_ prefix to all multiple inclusion guards.Diego Biurrun2007-10-17
| | | | Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid linking with h263.c functions when the relevant codecsAurelien Jacobs2007-07-10
are not compiled in. Originally committed as revision 9581 to svn://svn.ffmpeg.org/ffmpeg/trunk