summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
...
* Give a little better name to the magic(_id) field in xvmc structIvan Kalvachev2009-02-15
| | | | Originally committed as revision 17310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace assert in ff_xvmc_field_end() by av_log call at level AV_LOG_ERROR.Diego Biurrun2009-02-15
| | | | Originally committed as revision 17308 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove obsolete display_flags member from xvmc structIvan Kalvachev2009-02-15
| | | | | | and mark state defines as obsolete. Originally committed as revision 17307 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Detailed description of the interesting fields in xvmc struct.Ivan Kalvachev2009-02-15
| | | | Originally committed as revision 17306 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the state field in the xvmc struct to the extensions section.Ivan Kalvachev2009-02-15
| | | | | | It has always been a workaround for MPlayer limitations. Originally committed as revision 17305 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant assert(render) in ff_xvmc_init_block(). The immediatelyDiego Biurrun2009-02-15
| | | | | | following if condition checks render and does an assert if it fails. Originally committed as revision 17304 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove asserts that are immediately followed by a check and error return.Diego Biurrun2009-02-15
| | | | Originally committed as revision 17303 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop struct members display_flags and state with the next major version bump.Diego Biurrun2009-02-15
| | | | | | They are not used within FFmpeg. Originally committed as revision 17302 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygen comment/explanation for ff_xvmc_init_block().Diego Biurrun2009-02-15
| | | | Originally committed as revision 17301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove completely unsed structure fields mc_type and chroma_format.Diego Biurrun2009-02-15
| | | | | | Their only user, MPlayer, has already been updated not to use them anymore. Originally committed as revision 17300 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace consistency cosmeticsDiego Biurrun2009-02-14
| | | | Originally committed as revision 17299 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add avcodec.h #include so that LIBAVCODEC_VERSION_MAJOR is not undefined.Diego Biurrun2009-02-14
| | | | Originally committed as revision 17298 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate some unused xvmc structure fields.Ivan Kalvachev2009-02-14
| | | | Originally committed as revision 17297 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Doxygen comment similar to ff_xvmc_field_start() to ff_xvmc_field_end().Diego Biurrun2009-02-14
| | | | Originally committed as revision 17296 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmetics: remove stray spaceDiego Biurrun2009-02-14
| | | | Originally committed as revision 17295 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CosmeticsIvan Kalvachev2009-02-14
| | | | Originally committed as revision 17294 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge preprocessor if CONFIG_MPEG_XVMC_DECODER and code if( &&)Ivan Kalvachev2009-02-14
| | | | | | where possible Originally committed as revision 17293 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygenize ff_xvmc_field_start() comment.Diego Biurrun2009-02-14
| | | | Originally committed as revision 17292 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify ff_xvmc_field_start() comment.Diego Biurrun2009-02-14
| | | | Originally committed as revision 17291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check ff_xvmc_field_start() result in all cases.Ivan Kalvachev2009-02-14
| | | | Originally committed as revision 17290 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Another attempt to clarify draw_horiz_band() usage.Ivan Kalvachev2009-02-14
| | | | Originally committed as revision 17289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge some declarations and initializations.Diego Biurrun2009-02-14
| | | | Originally committed as revision 17288 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Return error instead of triggering assert.Ivan Kalvachev2009-02-14
| | | | Originally committed as revision 17287 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: comment wording/grammarDiego Biurrun2009-02-14
| | | | Originally committed as revision 17286 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Change '8*8' to '64'.Diego Biurrun2009-02-14
| | | | Originally committed as revision 17285 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: K&R styleDiego Biurrun2009-02-14
| | | | Originally committed as revision 17284 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give nice message for failed assert.Ivan Kalvachev2009-02-14
| | | | Originally committed as revision 17283 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Attempt to clarify draw_horiz_band description and fix two random typos.Diego Biurrun2009-02-14
| | | | Originally committed as revision 17282 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More clarification for draw_horiz_band() in hwaccell mode.Ivan Kalvachev2009-02-14
| | | | Originally committed as revision 17281 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add xvmc_internal.h that contains all internal xvmc function declarations.Diego Biurrun2009-02-14
| | | | | | This allows getting rid of a bunch of ugly forward declarations. Originally committed as revision 17280 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetic 64 instead 8*8Ivan Kalvachev2009-02-14
| | | | Originally committed as revision 17279 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify some assert usage.Ivan Kalvachev2009-02-14
| | | | | | They are not to check application supplied parameters. Originally committed as revision 17278 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document that ff_draw_horiz_band() could be used as hwaccell callback.Ivan Kalvachev2009-02-14
| | | | Originally committed as revision 17277 to svn://svn.ffmpeg.org/ffmpeg/trunk
* another (last?) round of K&R whitespace cosmeticsDiego Biurrun2009-02-14
| | | | Originally committed as revision 17276 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmetics: Align some comments.Diego Biurrun2009-02-14
| | | | Originally committed as revision 17275 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmetics: Put some spaces around operators for better readability.Diego Biurrun2009-02-14
| | | | Originally committed as revision 17274 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove a comment that references a non-existing function.Diego Biurrun2009-02-14
| | | | Originally committed as revision 17273 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make one comment slightly clearer and more readable.Diego Biurrun2009-02-14
| | | | Originally committed as revision 17272 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove one more commented-out line.Diego Biurrun2009-02-14
| | | | Originally committed as revision 17271 to svn://svn.ffmpeg.org/ffmpeg/trunk
* some more K&R whitespace cosmeticsDiego Biurrun2009-02-14
| | | | Originally committed as revision 17270 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: grammar/spelling/wording fixes in commentsDiego Biurrun2009-02-14
| | | | Originally committed as revision 17269 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless comment.Diego Biurrun2009-02-14
| | | | Originally committed as revision 17268 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Restore one set of parentheses to avoid the warning:Diego Biurrun2009-02-14
| | | | | | | libavcodec/mpegvideo_xvmc.c: In function ‘ff_xvmc_decode_mb’: libavcodec/mpegvideo_xvmc.c:269: warning: suggest parentheses around && within || Originally committed as revision 17267 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmetics: consistently format all commentsDiego Biurrun2009-02-14
| | | | Originally committed as revision 17266 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmetics: Correctly indent all comments.Diego Biurrun2009-02-14
| | | | Originally committed as revision 17265 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify TODO commentIvan Kalvachev2009-02-14
| | | | Originally committed as revision 17264 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove compatibility layer for old names of xvmc definitions.Diego Biurrun2009-02-14
| | | | | | The header was non-public before and the only user, MPlayer, was updated. Originally committed as revision 17263 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop two more sets of useless parentheses.Diego Biurrun2009-02-14
| | | | Originally committed as revision 17262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of the branch predictionIvan Kalvachev2009-02-14
| | | | Originally committed as revision 17261 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Consistently format all if/else statements in K&R styleDiego Biurrun2009-02-14
| | | | | | and drop braces from if statements where unnecessary. Originally committed as revision 17260 to svn://svn.ffmpeg.org/ffmpeg/trunk