Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
28eaa5f4
Commit
28eaa5f4
authored
10 years ago
by
Tom Finegan
Committed by
Gerrit Code Review
10 years ago
Browse files
Options
Download
Plain Diff
Merge "vpxenc.sh: Move some frequently used params into functions."
parents
e735b576
efb0fd1b
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
nextgen
nextgenv2
sandbox/Jingning/experimental
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
sandbox/hkuang@google.com/decode
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jzern@google.com/test
sandbox/wangch@google.com/vp9
sandbox/yaowu@google.com/mergeaom
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
v1.9.0
v1.9.0-rc1
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.0
v1.4.0
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/vpxenc.sh
+55
-86
test/vpxenc.sh
with
55 additions
and
86 deletions
test/vpxenc.sh
+
55
−
86
View file @
28eaa5f4
...
...
@@ -41,6 +41,40 @@ vpxenc_can_encode_vp9() {
fi
}
# Echo vpxenc command line parameters allowing use of
# hantro_collage_w352h288.yuv as input.
yuv_input_hantro_collage
()
{
echo
""
${
YUV_RAW_INPUT
}
"
--width="
${
YUV_RAW_INPUT_WIDTH
}
"
--height="
${
YUV_RAW_INPUT_HEIGHT
}
""
}
# Echo default vpxenc real time encoding params. $1 is the codec, which defaults
# to vp8 if unspecified.
vpxenc_rt_params
()
{
local readonly
codec
=
"
${
1
:-
vp8
}
"
echo
"--codec=
${
codec
}
--buf-initial-sz=500
--buf-optimal-sz=600
--buf-sz=1000
--cpu-used=-5
--end-usage=cbr
--error-resilient=1
--kf-max-dist=90000
--lag-in-frames=0
--max-intra-rate=300
--max-q=56
--min-q=2
--noise-sensitivity=0
--overshoot-pct=50
--passes=1
--profile=0
--resize-allowed=0
--rt
--static-thresh=0
--undershoot-pct=50"
}
# Wrapper function for running vpxenc with pipe input. Requires that
# LIBVPX_BIN_PATH points to the directory containing vpxenc. $1 is used as the
# input file path and shifted away. All remaining parameters are passed through
...
...
@@ -69,10 +103,8 @@ vpxenc() {
vpxenc_vp8_ivf
()
{
if
[
"
$(
vpxenc_can_encode_vp8
)
"
=
"yes"
]
;
then
local readonly
output
=
"
${
VPX_TEST_OUTPUT_DIR
}
/vp8.ivf"
vpxenc
"
${
YUV_RAW_INPUT
}
"
\
vpxenc
$(
yuv_input_hantro_collage
)
\
--codec
=
vp8
\
--width
=
"
${
YUV_RAW_INPUT_WIDTH
}
"
\
--height
=
"
${
YUV_RAW_INPUT_HEIGHT
}
"
\
--limit
=
"
${
TEST_FRAMES
}
"
\
--ivf
\
--output
=
"
${
output
}
"
...
...
@@ -88,10 +120,8 @@ vpxenc_vp8_webm() {
if
[
"
$(
vpxenc_can_encode_vp8
)
"
=
"yes"
]
&&
\
[
"
$(
webm_io_available
)
"
=
"yes"
]
;
then
local readonly
output
=
"
${
VPX_TEST_OUTPUT_DIR
}
/vp8.webm"
vpxenc
"
${
YUV_RAW_INPUT
}
"
\
vpxenc
$(
yuv_input_hantro_collage
)
\
--codec
=
vp8
\
--width
=
"
${
YUV_RAW_INPUT_WIDTH
}
"
\
--height
=
"
${
YUV_RAW_INPUT_HEIGHT
}
"
\
--limit
=
"
${
TEST_FRAMES
}
"
\
--output
=
"
${
output
}
"
...
...
@@ -106,31 +136,9 @@ vpxenc_vp8_webm_rt() {
if
[
"
$(
vpxenc_can_encode_vp8
)
"
=
"yes"
]
&&
\
[
"
$(
webm_io_available
)
"
=
"yes"
]
;
then
local readonly
output
=
"
${
VPX_TEST_OUTPUT_DIR
}
/vp8_rt.webm"
vpxenc
"
${
YUV_RAW_INPUT
}
"
\
--codec
=
vp8
\
--width
=
"
${
YUV_RAW_INPUT_WIDTH
}
"
\
--height
=
"
${
YUV_RAW_INPUT_HEIGHT
}
"
\
--output
=
"
${
output
}
"
\
--buf-initial-sz
=
500
\
--buf-optimal-sz
=
600
\
--buf-sz
=
1000
\
--cpu-used
=
-5
\
--end-usage
=
cbr
\
--error-resilient
=
1
\
--kf-max-dist
=
90000
\
--lag-in-frames
=
0
\
--max-intra-rate
=
300
\
--max-q
=
56
\
--min-q
=
2
\
--noise-sensitivity
=
0
\
--overshoot-pct
=
50
\
--passes
=
1
\
--profile
=
0
\
--resize-allowed
=
0
\
--rt
\
--static-thresh
=
0
\
--undershoot-pct
=
50
vpxenc
$(
yuv_input_hantro_collage
)
\
$(
vpxenc_rt_params vp8
)
\
--output
=
"
${
output
}
"
if
[
!
-e
"
${
output
}
"
]
;
then
elog
"Output file does not exist."
return
1
...
...
@@ -142,10 +150,8 @@ vpxenc_vp8_webm_2pass() {
if
[
"
$(
vpxenc_can_encode_vp8
)
"
=
"yes"
]
&&
\
[
"
$(
webm_io_available
)
"
=
"yes"
]
;
then
local readonly
output
=
"
${
VPX_TEST_OUTPUT_DIR
}
/vp8.webm"
vpxenc
"
${
YUV_RAW_INPUT
}
"
\
vpxenc
$(
yuv_input_hantro_collage
)
\
--codec
=
vp8
\
--width
=
"
${
YUV_RAW_INPUT_WIDTH
}
"
\
--height
=
"
${
YUV_RAW_INPUT_HEIGHT
}
"
\
--limit
=
"
${
TEST_FRAMES
}
"
\
--output
=
"
${
output
}
"
\
--passes
=
2
...
...
@@ -163,10 +169,8 @@ vpxenc_vp8_webm_lag10_frames20() {
local readonly
lag_total_frames
=
20
local readonly
lag_frames
=
10
local readonly
output
=
"
${
VPX_TEST_OUTPUT_DIR
}
/vp8_lag10_frames20.webm"
vpxenc
"
${
YUV_RAW_INPUT
}
"
\
vpxenc
$(
yuv_input_hantro_collage
)
\
--codec
=
vp8
\
--width
=
"
${
YUV_RAW_INPUT_WIDTH
}
"
\
--height
=
"
${
YUV_RAW_INPUT_HEIGHT
}
"
\
--limit
=
"
${
lag_total_frames
}
"
\
--lag-in-frames
=
"
${
lag_frames
}
"
\
--output
=
"
${
output
}
"
\
...
...
@@ -183,13 +187,11 @@ vpxenc_vp8_webm_lag10_frames20() {
vpxenc_vp8_ivf_piped_input
()
{
if
[
"
$(
vpxenc_can_encode_vp8
)
"
=
"yes"
]
;
then
local readonly
output
=
"
${
VPX_TEST_OUTPUT_DIR
}
/vp8_piped_input.ivf"
vpxenc_pipe
"
${
YUV_RAW_INPUT
}
"
\
--codec
=
vp8
\
--width
=
"
${
YUV_RAW_INPUT_WIDTH
}
"
\
--height
=
"
${
YUV_RAW_INPUT_HEIGHT
}
"
\
--limit
=
"
${
TEST_FRAMES
}
"
\
--ivf
\
--output
=
"
${
output
}
"
vpxenc_pipe
$(
yuv_input_hantro_collage
)
\
--codec
=
vp8
\
--limit
=
"
${
TEST_FRAMES
}
"
\
--ivf
\
--output
=
"
${
output
}
"
if
[
!
-e
"
${
output
}
"
]
;
then
elog
"Output file does not exist."
...
...
@@ -201,10 +203,8 @@ vpxenc_vp8_ivf_piped_input() {
vpxenc_vp9_ivf
()
{
if
[
"
$(
vpxenc_can_encode_vp9
)
"
=
"yes"
]
;
then
local readonly
output
=
"
${
VPX_TEST_OUTPUT_DIR
}
/vp9.ivf"
vpxenc
"
${
YUV_RAW_INPUT
}
"
\
vpxenc
$(
yuv_input_hantro_collage
)
\
--codec
=
vp9
\
--width
=
"
${
YUV_RAW_INPUT_WIDTH
}
"
\
--height
=
"
${
YUV_RAW_INPUT_HEIGHT
}
"
\
--limit
=
"
${
TEST_FRAMES
}
"
\
--ivf
\
--output
=
"
${
output
}
"
...
...
@@ -220,10 +220,8 @@ vpxenc_vp9_webm() {
if
[
"
$(
vpxenc_can_encode_vp9
)
"
=
"yes"
]
&&
\
[
"
$(
webm_io_available
)
"
=
"yes"
]
;
then
local readonly
output
=
"
${
VPX_TEST_OUTPUT_DIR
}
/vp9.webm"
vpxenc
"
${
YUV_RAW_INPUT
}
"
\
vpxenc
$(
yuv_input_hantro_collage
)
\
--codec
=
vp9
\
--width
=
"
${
YUV_RAW_INPUT_WIDTH
}
"
\
--height
=
"
${
YUV_RAW_INPUT_HEIGHT
}
"
\
--limit
=
"
${
TEST_FRAMES
}
"
\
--output
=
"
${
output
}
"
...
...
@@ -238,30 +236,9 @@ vpxenc_vp9_webm_rt() {
if
[
"
$(
vpxenc_can_encode_vp9
)
"
=
"yes"
]
&&
\
[
"
$(
webm_io_available
)
"
=
"yes"
]
;
then
local readonly
output
=
"
${
VPX_TEST_OUTPUT_DIR
}
/vp9_rt.webm"
vpxenc
"
${
YUV_RAW_INPUT
}
"
\
--codec
=
vp9
\
--width
=
"
${
YUV_RAW_INPUT_WIDTH
}
"
\
--height
=
"
${
YUV_RAW_INPUT_HEIGHT
}
"
\
--output
=
"
${
output
}
"
\
--buf-initial-sz
=
500
\
--buf-optimal-sz
=
600
\
--buf-sz
=
1000
\
--cpu-used
=
-5
\
--end-usage
=
cbr
\
--error-resilient
=
1
\
--kf-max-dist
=
90000
\
--lag-in-frames
=
0
\
--max-intra-rate
=
300
\
--max-q
=
56
\
--min-q
=
2
\
--noise-sensitivity
=
0
\
--overshoot-pct
=
50
\
--passes
=
1
\
--profile
=
0
\
--resize-allowed
=
0
\
--rt
\
--static-thresh
=
0
\
--undershoot-pct
=
50
vpxenc
$(
yuv_input_hantro_collage
)
\
$(
vpxenc_rt_params vp9
)
\
--output
=
"
${
output
}
"
if
[
!
-e
"
${
output
}
"
]
;
then
elog
"Output file does not exist."
...
...
@@ -274,10 +251,8 @@ vpxenc_vp9_webm_2pass() {
if
[
"
$(
vpxenc_can_encode_vp9
)
"
=
"yes"
]
&&
\
[
"
$(
webm_io_available
)
"
=
"yes"
]
;
then
local readonly
output
=
"
${
VPX_TEST_OUTPUT_DIR
}
/vp9.webm"
vpxenc
"
${
YUV_RAW_INPUT
}
"
\
vpxenc
$(
yuv_input_hantro_collage
)
\
--codec
=
vp9
\
--width
=
"
${
YUV_RAW_INPUT_WIDTH
}
"
\
--height
=
"
${
YUV_RAW_INPUT_HEIGHT
}
"
\
--limit
=
"
${
TEST_FRAMES
}
"
\
--output
=
"
${
output
}
"
\
--passes
=
2
...
...
@@ -292,10 +267,8 @@ vpxenc_vp9_webm_2pass() {
vpxenc_vp9_ivf_lossless
()
{
if
[
"
$(
vpxenc_can_encode_vp9
)
"
=
"yes"
]
;
then
local readonly
output
=
"
${
VPX_TEST_OUTPUT_DIR
}
/vp9_lossless.ivf"
vpxenc
"
${
YUV_RAW_INPUT
}
"
\
vpxenc
$(
yuv_input_hantro_collage
)
\
--codec
=
vp9
\
--width
=
"
${
YUV_RAW_INPUT_WIDTH
}
"
\
--height
=
"
${
YUV_RAW_INPUT_HEIGHT
}
"
\
--limit
=
"
${
TEST_FRAMES
}
"
\
--ivf
\
--output
=
"
${
output
}
"
\
...
...
@@ -311,10 +284,8 @@ vpxenc_vp9_ivf_lossless() {
vpxenc_vp9_ivf_minq0_maxq0
()
{
if
[
"
$(
vpxenc_can_encode_vp9
)
"
=
"yes"
]
;
then
local readonly
output
=
"
${
VPX_TEST_OUTPUT_DIR
}
/vp9_lossless_minq0_maxq0.ivf"
vpxenc
"
${
YUV_RAW_INPUT
}
"
\
vpxenc
$(
yuv_input_hantro_collage
)
\
--codec
=
vp9
\
--width
=
"
${
YUV_RAW_INPUT_WIDTH
}
"
\
--height
=
"
${
YUV_RAW_INPUT_HEIGHT
}
"
\
--limit
=
"
${
TEST_FRAMES
}
"
\
--ivf
\
--output
=
"
${
output
}
"
\
...
...
@@ -334,10 +305,8 @@ vpxenc_vp9_webm_lag10_frames20() {
local readonly
lag_total_frames
=
20
local readonly
lag_frames
=
10
local readonly
output
=
"
${
VPX_TEST_OUTPUT_DIR
}
/vp9_lag10_frames20.webm"
vpxenc
"
${
YUV_RAW_INPUT
}
"
\
vpxenc
$(
yuv_input_hantro_collage
)
\
--codec
=
vp9
\
--width
=
"
${
YUV_RAW_INPUT_WIDTH
}
"
\
--height
=
"
${
YUV_RAW_INPUT_HEIGHT
}
"
\
--limit
=
"
${
lag_total_frames
}
"
\
--lag-in-frames
=
"
${
lag_frames
}
"
\
--output
=
"
${
output
}
"
\
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets