1# Configuration information for video process test case. 2# This application will firstly load yuv frames to one type of surface(NV12/YV12/I420) 3# you require. After video processing, the processed content (NV12/YV12/I420 surface) 4# will be stored to frames(yv12 format in file). 5# Supported features include: sharpening, implicit format conversion(NV12<->YV12<->I420). Each 6# time only one kind of processing will be executed in test application. Although libva supports 7# multiple filters execution in one time. you can modify this configuration file to set the 8# filter and the corresponding parameters. 9 10#1.Source YUV(RGB) file information 11SRC_FILE_NAME: ./flowersky_352x288.nv12 12SRC_FRAME_WIDTH: 352 13SRC_FRAME_HEIGHT: 288 14SRC_FRAME_FORMAT: NV12 15 16#Note .nv12 files are in NV12 format 17SRC_FILE_FORMAT: NV12 18 19#2.Destination YUV(RGB) file information 20DST_FILE_NAME: ./flowersky_352x288_writer352x288.nv12 21DST_FRAME_WIDTH: 352 22DST_FRAME_HEIGHT: 288 23DST_FRAME_FORMAT: NV12 24 25DST_FILE_FORMAT: NV12 26 27#3.How many frames to be processed 28FRAME_SUM: 5 29 30#4.VPP filter specific parameters. If they are not specified here, 31#default value will be applied then. 32FILTER_TYPE: VAProcFilterSharpening 33 34#4.1 Sharpening parameters 35# (0 ~ 64, default 44) 36SHARPENING_INTENSITY: 44 37