| Index: source/libvpx/vp9/encoder/vp9_dct.h
|
| ===================================================================
|
| --- source/libvpx/vp9/encoder/vp9_dct.h (revision 247498)
|
| +++ source/libvpx/vp9/encoder/vp9_dct.h (working copy)
|
| @@ -12,6 +12,10 @@
|
| #ifndef VP9_ENCODER_VP9_DCT_H_
|
| #define VP9_ENCODER_VP9_DCT_H_
|
|
|
| +#ifdef __cplusplus
|
| +extern "C" {
|
| +#endif
|
| +
|
| void vp9_fht4x4(TX_TYPE tx_type, const int16_t *input, int16_t *output,
|
| int stride);
|
|
|
| @@ -21,4 +25,8 @@
|
| void vp9_fht16x16(TX_TYPE tx_type, const int16_t *input, int16_t *output,
|
| int stride);
|
|
|
| +#ifdef __cplusplus
|
| +} // extern "C"
|
| +#endif
|
| +
|
| #endif // VP9_ENCODER_VP9_DCT_H_
|
|
|