]> git.sesse.net Git - ffmpeg/commitdiff
avutil/frame: undeprecate AVFrame.motion_val API
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 26 Mar 2014 17:22:49 +0000 (18:22 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 26 Mar 2014 17:22:49 +0000 (18:22 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavutil/frame.h

index e68a96a39dd3f3d6ca17d68ef429ffb65a2da833..ccc86d72c53f1e210fd454f9ff89be1af6b11218 100644 (file)
@@ -283,7 +283,6 @@ typedef struct AVFrame {
      * motion_val[direction][x + y*mv_stride][0->mv_x, 1->mv_y];
      * @endcode
      */
-    attribute_deprecated
     int16_t (*motion_val[2])[2];
 
     /**
@@ -380,7 +379,6 @@ typedef struct AVFrame {
      * log2 of the size of the block which a single vector in motion_val represents:
      * (4->16x16, 3->8x8, 2-> 4x4, 1-> 2x2)
      */
-    attribute_deprecated
     uint8_t motion_subsample_log2;
 #endif