Commit efc54a0f authored by Austin Yuan's avatar Austin Yuan

Update for:

1. SkipFrame for vaQuerySurfaceStatus
2. disable_deblocking_filter_idc for VAEncSliceParameterBuffer
parent 83d0fd84
...@@ -1060,7 +1060,7 @@ typedef struct _VAEncSliceParameterBuffer ...@@ -1060,7 +1060,7 @@ typedef struct _VAEncSliceParameterBuffer
union { union {
struct { struct {
unsigned char is_intra : 1; unsigned char is_intra : 1;
unsigned char deblock_on : 1; unsigned char disable_deblocking_filter_idc : 2;
}; };
unsigned char flags; unsigned char flags;
}; };
...@@ -1197,7 +1197,8 @@ typedef enum ...@@ -1197,7 +1197,8 @@ typedef enum
VASurfaceDisplaying = 1, /* Displaying in progress (not safe to render into it) */ VASurfaceDisplaying = 1, /* Displaying in progress (not safe to render into it) */
/* this status is useful if surface is used as the source */ /* this status is useful if surface is used as the source */
/* of an overlay */ /* of an overlay */
VASurfaceReady = 2 /* not being rendered or displayed */ VASurfaceReady = 2, /* not being rendered or displayed */
VASurfaceSkipped = 3 /* to indicate a skipped frame during encode */
} VASurfaceStatus; } VASurfaceStatus;
/* /*
......
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