1# Configuration information for video process test case. 2# This application will firstly load yuv frames to one type of surface(NV12/RBGP) 3# you require. After GPU HW copy, the processed content (NV12/RGBP surface) 4# will be stored to frames. 5# Supported features include intput/ouput internal surface and external(usrptr surface) copy. 6# you can modify this configuration file to set the corresponding parameters. 7 8#1.Source YUV(RGB) file information 9SRC_FILE_NAME: ./src_480x320.nv12 10SRC_FRAME_WIDTH: 480 11SRC_FRAME_HEIGHT: 320 12SRC_FRAME_FORMAT: NV12 13 14#Note .nv12 files are in NV12 format 15SRC_FILE_FORMAT: NV12 16 17# source surface memory type 18# supported type: (CPU, VA), default: VA 19SRC_SURFACE_MEMORY_TYPE: VA 20 21#if use usrptr CPU memory type, can support customization align size 22SRC_SURFACE_CPU_ALIGN_SIZE: 1 23 24#2.Destination YUV(RGB) file information 25DST_FILE_NAME: ./dst_480x320.nv12 26DST_FRAME_WIDTH: 480 27DST_FRAME_HEIGHT: 320 28DST_FRAME_FORMAT: NV12 29 30#Note .nv12 files are in NV12 format 31DST_FILE_FORMAT: NV12 32 33# destination surface memory type 34# supported type: (CPU, VA), default: VA 35DST_SURFACE_MEMORY_TYPE: VA 36 37#if use usrptr CPU memory type, can support customization align size 38DST_SURFACE_CPU_ALIGN_SIZE: 128 39 40FRAME_SUM: 1 41 42# hw engine select, 0:balance 1:perf, 2 powersaving 43COPY_METHOD: 1 44