diff xvmc.h @ 8941:42a048ecbba3 libavcodec

Give struct members more sensible names: total_number_of_mv_blocks --> allocated_mv_blocks total_number_of_data_blocks --> allocated_data_blocks
author diego
date Mon, 16 Feb 2009 00:21:16 +0000
parents d9555e218ce3
children c1fd3c6a8533
line wrap: on
line diff
--- a/xvmc.h	Mon Feb 16 00:09:00 2009 +0000
+++ b/xvmc.h	Mon Feb 16 00:21:16 2009 +0000
@@ -66,13 +66,13 @@
         - application - set during initialization
         - libavcodec  - unchanged
     */
-    int             total_number_of_mv_blocks;
+    int             allocated_mv_blocks;
 
     /** Number of blocks that can be stored at once in the data_blocks array.
         - application - set during initialization
         - libavcodec  - unchanged
     */
-    int             total_number_of_data_blocks;
+    int             allocated_data_blocks;
 
     /** Indicates that the hardware would interpret data_blocks as IDCT
         coefficients and perform IDCT on them.