[FFmpeg-cvslog] r17310 - in trunk/libavcodec: mpegvideo_xvmc.c xvmc.h

iive subversion
Sun Feb 15 03:36:43 CET 2009


Author: iive
Date: Sun Feb 15 03:36:43 2009
New Revision: 17310

Log:
Give a little better name to the magic(_id) field in xvmc struct

Modified:
   trunk/libavcodec/mpegvideo_xvmc.c
   trunk/libavcodec/xvmc.h

Modified: trunk/libavcodec/mpegvideo_xvmc.c
==============================================================================
--- trunk/libavcodec/mpegvideo_xvmc.c	Sun Feb 15 03:28:54 2009	(r17309)
+++ trunk/libavcodec/mpegvideo_xvmc.c	Sun Feb 15 03:36:43 2009	(r17310)
@@ -38,7 +38,7 @@
 void ff_xvmc_init_block(MpegEncContext *s)
 {
     struct xvmc_render_state *render = (struct xvmc_render_state*)s->current_picture.data[2];
-    if (!render || render->magic != AV_XVMC_RENDER_MAGIC) {
+    if (!render || render->magic_id != AV_XVMC_RENDER_MAGIC) {
         assert(0);
         return; // make sure that this is a render packet
     }
@@ -69,7 +69,7 @@ int ff_xvmc_field_start(MpegEncContext*s
     struct xvmc_render_state *last, *next, *render = (struct xvmc_render_state*)s->current_picture.data[2];
 
     assert(avctx);
-    if (!render || render->magic != AV_XVMC_RENDER_MAGIC)
+    if (!render || render->magic_id != AV_XVMC_RENDER_MAGIC)
         return -1; // make sure that this is a render packet
 
     render->picture_structure = s->picture_structure;
@@ -92,7 +92,7 @@ int ff_xvmc_field_start(MpegEncContext*s
             next = (struct xvmc_render_state*)s->next_picture.data[2];
             if (!next)
                 return -1;
-            if (next->magic != AV_XVMC_RENDER_MAGIC)
+            if (next->magic_id != AV_XVMC_RENDER_MAGIC)
                 return -1;
             render->p_future_surface = next->p_surface;
             // no return here, going to set forward prediction
@@ -100,7 +100,7 @@ int ff_xvmc_field_start(MpegEncContext*s
             last = (struct xvmc_render_state*)s->last_picture.data[2];
             if (!last)
                 last = render; // predict second field from the first
-            if (last->magic != AV_XVMC_RENDER_MAGIC)
+            if (last->magic_id != AV_XVMC_RENDER_MAGIC)
                 return -1;
             render->p_past_surface = last->p_surface;
             return 0;
@@ -154,7 +154,7 @@ void ff_xvmc_decode_mb(MpegEncContext *s
     // start of XVMC-specific code
     render = (struct xvmc_render_state*)s->current_picture.data[2];
     assert(render);
-    assert(render->magic == AV_XVMC_RENDER_MAGIC);
+    assert(render->magic_id == AV_XVMC_RENDER_MAGIC);
     assert(render->mv_blocks);
 
     // take the next free macroblock

Modified: trunk/libavcodec/xvmc.h
==============================================================================
--- trunk/libavcodec/xvmc.h	Sun Feb 15 03:28:54 2009	(r17309)
+++ trunk/libavcodec/xvmc.h	Sun Feb 15 03:36:43 2009	(r17310)
@@ -36,7 +36,7 @@
 struct xvmc_render_state {
 /** set by calling application */
 //@{
-    int             magic;                        ///< used as a check against memory corruption by regular pixel routines
+    int             magic_id;                     ///< used as a check against memory corruption by regular pixel routines or other API structure
 
     short*          data_blocks;
     XvMCMacroBlock* mv_blocks;




More information about the ffmpeg-cvslog mailing list