• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 scaling and implicit format conversion(NV12<->YV12<->I420).
6#  you can modify this configuration file to set the corresponding parameters.
7
8#1.Source YUV(RGB) file information
9SRC_FILE_NAME: ./foreman_10f_640x480.nv12
10SRC_FRAME_WIDTH:  640
11SRC_FRAME_HEIGHT: 480
12SRC_FRAME_FORMAT: NV12
13
14#Note .nv12 files are in NV12 format
15SRC_FILE_FORMAT: NV12
16
17#2.Destination YUV(RGB) file information
18DST_FILE_NAME:    ./scaling_out_720x480.yv12
19DST_FRAME_WIDTH:  720
20DST_FRAME_HEIGHT: 480
21DST_FRAME_FORMAT: YV12
22
23DST_FILE_FORMAT: YV12
24
25#3.How many frames to be processed
26FRAME_SUM: 5
27
28