summaryrefslogtreecommitdiff
path: root/test/encode/h264encode.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/encode/h264encode.c')
-rw-r--r--test/encode/h264encode.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/encode/h264encode.c b/test/encode/h264encode.c
index 7365008..6a85aba 100644
--- a/test/encode/h264encode.c
+++ b/test/encode/h264encode.c
@@ -1025,7 +1025,8 @@ static int init_va(void)
if (attrib[VAConfigAttribEncMaxRefFrames].value != VA_ATTRIB_NOT_SUPPORTED) {
h264_maxref = attrib[VAConfigAttribEncMaxRefFrames].value;
- printf("Support %d reference frames\n", h264_maxref);
+ printf("Support %d RefPicList0 and %d RefPicList1\n",
+ h264_maxref & 0xffff, (h264_maxref >> 16) & 0xffff );
}
if (attrib[VAConfigAttribEncMaxSlices].value != VA_ATTRIB_NOT_SUPPORTED)