shithub: libvpx

Download patch

ref: 3ef9786b7e50e050a68639512a3ae441bcb6b600
parent: bdd8eb6fcc696ae6e8b84da6aa02897584e62e4e
author: Jingning Han <jingning@google.com>
date: Thu Sep 11 06:54:37 EDT 2014

Add a note for enum values of MV_REFERENCE_FRAME

Change-Id: Ifaf6738f26e86ded6eb6ea1465bad7a229612999

--- a/vp9/common/vp9_blockd.h
+++ b/vp9/common/vp9_blockd.h
@@ -98,6 +98,9 @@
   int_mv as_mv[2];  // first, second inter predictor motion vectors
 } b_mode_info;
 
+// Note that the rate-distortion optimization loop, bit-stream writer, and
+// decoder implementation modules critically rely on the enum entry values
+// specified herein. They should be refactored concurrently.
 typedef enum {
   NONE = -1,
   INTRA_FRAME = 0,
--