]> granicus.if.org Git - libvpx/commitdiff
Make GetCodingFrameNum const function
authorangiebird <angiebird@google.com>
Fri, 22 Nov 2019 18:53:09 +0000 (10:53 -0800)
committerangiebird <angiebird@google.com>
Mon, 25 Nov 2019 18:38:16 +0000 (10:38 -0800)
Change-Id: I6a5a2400cfb6e122c77667e0950c80026c48a1f6

vp9/simple_encode.cc
vp9/simple_encode.h

index 6bf55c95a9a60a4340a4bf02d6846648fd8f2f86..f34df6801bee13226e509e05b1a7b7b614f9337b 100644 (file)
@@ -279,7 +279,7 @@ void SimpleEncode::EncodeFrameWithQuantizeIndex(
   encode_command_reset_external_quantize_index(&impl_ptr_->cpi->encode_command);
 }
 
-int SimpleEncode::GetCodingFrameNum() {
+int SimpleEncode::GetCodingFrameNum() const {
   assert(impl_ptr_->first_pass_stats.size() - 1 > 0);
   // These are the default settings for now.
   const int multi_layer_arf = 0;
index 5d6972e7a5a8119f6ce9b19b385b28f0298a08c4..f2344a24070e504b3ce2f9a83930ddb237cdde87 100644 (file)
@@ -74,7 +74,7 @@ class SimpleEncode {
   // Gets the number of coding frames for the video. The coding frames include
   // show frame and no show frame.
   // This function should be called after ComputeFirstPassStats().
-  int GetCodingFrameNum();
+  int GetCodingFrameNum() const;
 
  private:
   class EncodeImpl;