summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo_xvmc.c
Commit message (Collapse)AuthorAge
* hwaccel: unbreak buildMans Rullgard2011-07-10
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*.Stefano Sabatini2011-05-02
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Simplify: Remove impossible condition.Nicolas Kaiser2010-11-09
| | | | | | Patch by Nicolas Kaiser, nikai nikai net Originally committed as revision 25714 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix grammar errors in documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently use third person in doxies.Stefano Sabatini2009-10-27
| | | | Originally committed as revision 20388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the type of pblocks from pointers to short array intoIvan Kalvachev2009-02-22
| | | | | | | pointers to array of 64 DCTELEM, similarly to other block fields. This also get rid of some casts and fixes a warning. Originally committed as revision 17517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add more paranoid checks of xvmc token.Ivan Kalvachev2009-02-19
| | | | Originally committed as revision 17453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Directly #include required X11/XvMC header.Diego Biurrun2009-02-19
| | | | Originally committed as revision 17450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace sizeof(short) by the more robust sizeof(*s->pblocks[i]) in memset andDiego Biurrun2009-02-17
| | | | | | memcpy calls. s->pblocks is the element actually being handled. Originally committed as revision 17404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* small Doxygen comment grammar fixDiego Biurrun2009-02-17
| | | | Originally committed as revision 17403 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert converting two asserts into if checks and error messages.Diego Biurrun2009-02-17
| | | | | | It did not achieve the intended effect. Originally committed as revision 17402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Thoroughly check all fields set by the application in xvmc struct.Ivan Kalvachev2009-02-16
| | | | Originally committed as revision 17387 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmetics: Place spaces around += for better readability.Diego Biurrun2009-02-16
| | | | Originally committed as revision 17368 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace two asserts by checks and error messages.Diego Biurrun2009-02-16
| | | | Originally committed as revision 17362 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmeticsDiego Biurrun2009-02-16
| | | | Originally committed as revision 17358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give struct members more sensible names:Diego Biurrun2009-02-16
| | | | | | | total_number_of_mv_blocks --> allocated_mv_blocks total_number_of_data_blocks --> allocated_data_blocks Originally committed as revision 17356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename AV_XVMC_RENDER_MAGIC constant to AV_XVMC_ID to reflect a similarDiego Biurrun2009-02-15
| | | | | | change in the name of the struct member xvmc_id. Originally committed as revision 17348 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: typo fixDiego Biurrun2009-02-15
| | | | Originally committed as revision 17346 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling/grammar/wording fixes for Doxygen commentsDiego Biurrun2009-02-15
| | | | Originally committed as revision 17344 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename unique_id to the way michaelni likes it. (xvmc_id)Ivan Kalvachev2009-02-15
| | | | Originally committed as revision 17341 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document all functions in mpegvideo_xvmc.Ivan Kalvachev2009-02-15
| | | | Originally committed as revision 17340 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename xvmc_pixfmt_render structure to xvmc_pix_fmt.Diego Biurrun2009-02-15
| | | | Originally committed as revision 17339 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Kill the magic field in xvmc structure.Ivan Kalvachev2009-02-15
| | | | Originally committed as revision 17338 to svn://svn.ffmpeg.org/ffmpeg/trunk
* K&R whitespace cosmeticsDiego Biurrun2009-02-15
| | | | Originally committed as revision 17337 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: Remove duplicated hunk of code.Diego Biurrun2009-02-15
| | | | Originally committed as revision 17335 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics. Vertical align.Ivan Kalvachev2009-02-15
| | | | Originally committed as revision 17319 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Almost cosmetics.Ivan Kalvachev2009-02-15
| | | | | | Move some assignments after the checks. Originally committed as revision 17318 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check all critical xvmc struct fields in ff_xvmc_field_start()Ivan Kalvachev2009-02-15
| | | | | | | and log error if they are not correct. All other functions are supposedly called after that one, so use assert() for them. Originally committed as revision 17317 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Proper condition in xvmc decode mb.Ivan Kalvachev2009-02-15
| | | | | | | The old one would try to use mv blocks that are written outside their buffer, in case of unhandled error. Originally committed as revision 17315 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename xvmc_render_state to something with pixfmt in its name.Ivan Kalvachev2009-02-15
| | | | Originally committed as revision 17314 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert 17308.Ivan Kalvachev2009-02-15
| | | | | | | The above commit makes ff_xvmc_decode_mb to output one log entry for each decoded MB, causing massive slowdown. Originally committed as revision 17312 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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 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
* Doxygen comment/explanation for ff_xvmc_init_block().Diego Biurrun2009-02-15
| | | | Originally committed as revision 17301 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
* 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
* 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
* 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