Moving declaration of vp9_encode_frame() to vp9_encodeframe.h.

Change-Id: I14adfd32622152abdc22c16429db38f6724628a4
This commit is contained in:
Dmitry Kovalev 2014-03-12 17:29:37 -07:00
parent 6207a38b7d
commit 06b7b575c1
3 changed files with 4 additions and 2 deletions

View File

@ -18,11 +18,14 @@ extern "C" {
struct macroblock;
struct yv12_buffer_config;
struct VP9_COMP;
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

View File

@ -28,6 +28,7 @@
#include "vp9/common/vp9_tile_common.h"
#include "vp9/encoder/vp9_bitstream.h"
#include "vp9/encoder/vp9_encodeframe.h"
#include "vp9/encoder/vp9_encodemv.h"
#include "vp9/encoder/vp9_firstpass.h"
#include "vp9/encoder/vp9_mbgraph.h"

View File

@ -930,8 +930,6 @@ static YV12_BUFFER_CONFIG *get_ref_frame_buffer(VP9_COMP *cpi,
ref_frame)]].buf;
}
void vp9_encode_frame(VP9_COMP *cpi);
void vp9_set_speed_features(VP9_COMP *cpi);
int vp9_calc_ss_err(const YV12_BUFFER_CONFIG *source,