Commit 860c1278 authored by ywan171's avatar ywan171 Committed by Austin Yuan

va.h: TopFieldOrderCnt/BottomFieldOrderCnt should be signed instead of unsigned

POC should be integer.

Change-Id: I75281aafa148c88f0de58981969e1c43ea8d2684
Signed-off-by: default avatarywan171 <yi.a.wang@intel.com>
parent 6f2ee2b9
......@@ -1038,8 +1038,8 @@ typedef struct _VAPictureH264
VASurfaceID picture_id;
unsigned int frame_idx;
unsigned int flags;
unsigned int TopFieldOrderCnt;
unsigned int BottomFieldOrderCnt;
signed int TopFieldOrderCnt;
signed int BottomFieldOrderCnt;
} VAPictureH264;
/* flags in VAPictureH264 could be OR of the following */
#define VA_PICTURE_H264_INVALID 0x00000001
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment