Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Runner/suites/Multimedia/CDSP/fastrpc_test/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ while [ "$i" -le "$REPEAT" ]; do
log_dsp_remoteproc_status
fi

if grep -q "All tests completed successfully" "$iter_log"; then
if [ -r "$iter_log" ] && grep -F -q -e "All tests completed successfully" -e "All applicable tests PASSED" "$iter_log"; then
PASS_COUNT=$((PASS_COUNT+1))
log_pass "$iter_tag: success"
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"PixelFormat": "NV12",
"Width": 1280,
"Height": 720,
"Outputpath": "./720p_AVC.yuv",
"Outputpath": "",
"_Outputpath_original": "./720p_AVC.yuv",
"InputBufferCount": 16,
"OutputBufferCount": 16
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"PixelFormat": "NV12",
"Width": 1280,
"Height": 720,
"Outputpath": "./Enc_AVC_720p.h264",
"Outputpath": "",
"_Outputpath_original": "./Enc_AVC_720p.h264",
"InputBufferCount": 32,
"OutputBufferCount": 32,
"OperatingRate": 10,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"PixelFormat": "NV12",
"Width": 1280,
"Height": 720,
"Outputpath": "./720x1280_hevc.yuv",
"Outputpath": "",
"_Outputpath_original": "./720x1280_hevc.yuv",
"InputBufferCount": 16,
"OutputBufferCount": 16,
"UseMinBufferCtrl": false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"PixelFormat": "NV12",
"Width": 1280,
"Height": 720,
"Outputpath": "./Enc_HEVC__Main_1280_720.265",
"Outputpath": "",
"_Outputpath_original": "./Enc_HEVC__Main_1280_720.265",
"UseMinBufferCtrl": false,
"InputBufferCount": 32,
"OutputBufferCount": 32,
Expand Down Expand Up @@ -64,4 +65,4 @@
}
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"PixelFormat": "NV12",
"Width": 1280,
"Height": 720,
"Outputpath": "./720x1280_vp9.yuv",
"Outputpath": "",
"_Outputpath_original": "./720x1280_vp9.yuv",
"InputBufferCount": 16,
"OutputBufferCount": 16,
"UseMinBufferCtrl": false
Expand Down
Loading