| Index: source/libvpx/vp9/encoder/vp9_encodeframe.h
 | 
| ===================================================================
 | 
| --- source/libvpx/vp9/encoder/vp9_encodeframe.h	(revision 263011)
 | 
| +++ source/libvpx/vp9/encoder/vp9_encodeframe.h	(working copy)
 | 
| @@ -18,11 +18,20 @@
 | 
|  
 | 
|  struct macroblock;
 | 
|  struct yv12_buffer_config;
 | 
| +struct VP9_COMP;
 | 
|  
 | 
| +typedef struct {
 | 
| +  unsigned int sse;
 | 
| +  int sum;
 | 
| +  unsigned int var;
 | 
| +} diff;
 | 
| +
 | 
|  void vp9_setup_src_planes(struct macroblock *x,
 | 
|                            const struct yv12_buffer_config *src,
 | 
|                            int mi_row, int mi_col);
 | 
|  
 | 
| +void vp9_encode_frame(struct VP9_COMP *cpi);
 | 
| +
 | 
|  #ifdef __cplusplus
 | 
|  }  // extern "C"
 | 
|  #endif
 | 
| 
 |