summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Chiang <angiebird@google.com>2019-12-04 19:31:02 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-12-04 19:31:02 +0000
commit8cb34dd640b1bae1ddb74296d6415547ab7f230d (patch)
tree233e998342ec97ec815d8da8eaaa54f99150952b
parent89375f0315cf961493f535e900d35cb67d00d9e1 (diff)
parentf0878a719ab79c743e561e2eb35855219f73d969 (diff)
downloadlibvpx-8cb34dd640b1bae1ddb74296d6415547ab7f230d.tar
libvpx-8cb34dd640b1bae1ddb74296d6415547ab7f230d.tar.gz
libvpx-8cb34dd640b1bae1ddb74296d6415547ab7f230d.tar.bz2
libvpx-8cb34dd640b1bae1ddb74296d6415547ab7f230d.zip
Merge "Describe ObserveFirstPassStats with more details"
-rw-r--r--vp9/simple_encode.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/vp9/simple_encode.h b/vp9/simple_encode.h
index f2344a240..a05ef10cb 100644
--- a/vp9/simple_encode.h
+++ b/vp9/simple_encode.h
@@ -51,7 +51,10 @@ class SimpleEncode {
// future encode.
void ComputeFirstPassStats();
- // Outputs the first pass stats.
+ // Outputs the first pass stats represented by a 2-D vector.
+ // One can use the frame index at first dimension to retrieve the stats for
+ // each video frame. The stats of each video frame is a vector of 25 double
+ // values. For details, please check FIRSTPASS_STATS in vp9_firstpass.h
std::vector<std::vector<double>> ObserveFirstPassStats();
// Initializes the encoder for actual encoding.