From: James Zern Date: Fri, 16 Jun 2017 08:48:55 +0000 (-0700) Subject: add ethreading.h X-Git-Tag: v1.7.0~373^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=864bc77e7a2a190d2a25f55b62380d65a7956308;p=libvpx add ethreading.h quiets -Wmissing-prototypes in encodeframe.c Change-Id: Ic216d0bdd6130eac44f2183639a715b2f1088ebe --- diff --git a/vp8/encoder/encodeframe.c b/vp8/encoder/encodeframe.c index cf569daa7..1c9f57b56 100644 --- a/vp8/encoder/encodeframe.c +++ b/vp8/encoder/encodeframe.c @@ -14,6 +14,9 @@ #include "bitstream.h" #include "encodemb.h" #include "encodemv.h" +#if CONFIG_MULTITHREAD +#include "ethreading.h" +#endif #include "vp8/common/common.h" #include "onyx_int.h" #include "vp8/common/extend.h" @@ -38,8 +41,6 @@ extern void vp8_stuff_mb(VP8_COMP *cpi, MACROBLOCK *x, TOKENEXTRA **t); extern void vp8cx_initialize_me_consts(VP8_COMP *cpi, int QIndex); extern void vp8_auto_select_speed(VP8_COMP *cpi); -extern void vp8cx_init_mbrthread_data(VP8_COMP *cpi, MACROBLOCK *x, - MB_ROW_COMP *mbr_ei, int count); static void adjust_act_zbin(VP8_COMP *cpi, MACROBLOCK *x); #ifdef MODE_STATS diff --git a/vp8/encoder/ethreading.c b/vp8/encoder/ethreading.c index df34997ac..3e5b709e0 100644 --- a/vp8/encoder/ethreading.c +++ b/vp8/encoder/ethreading.c @@ -14,6 +14,7 @@ #include "vp8/common/extend.h" #include "bitstream.h" #include "encodeframe.h" +#include "ethreading.h" #if CONFIG_MULTITHREAD diff --git a/vp8/encoder/ethreading.h b/vp8/encoder/ethreading.h new file mode 100644 index 000000000..95bf73d18 --- /dev/null +++ b/vp8/encoder/ethreading.h @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2017 The WebM project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. An additional intellectual property rights grant can be found + * in the file PATENTS. All contributing project authors may + * be found in the AUTHORS file in the root of the source tree. + */ + +#ifndef VP8_ENCODER_ETHREADING_H_ +#define VP8_ENCODER_ETHREADING_H_ + +#include "vp8/encoder/onyx_int.h" + +#ifdef __cplusplus +extern "C" { +#endif + +struct VP8_COMP; +struct macroblock; + +void vp8cx_init_mbrthread_data(struct VP8_COMP *cpi, struct macroblock *x, + MB_ROW_COMP *mbr_ei, int count); +int vp8cx_create_encoder_threads(struct VP8_COMP *cpi); +void vp8cx_remove_encoder_threads(struct VP8_COMP *cpi); + +#ifdef __cplusplus +} +#endif + +#endif // VP8_ENCODER_ETHREADING_H_ diff --git a/vp8/encoder/onyx_if.c b/vp8/encoder/onyx_if.c index a1aa3820b..28c5f404d 100644 --- a/vp8/encoder/onyx_if.c +++ b/vp8/encoder/onyx_if.c @@ -44,6 +44,9 @@ #include "mr_dissim.h" #endif #include "encodeframe.h" +#if CONFIG_MULTITHREAD +#include "ethreading.h" +#endif #include #include @@ -64,8 +67,6 @@ extern void vp8_deblock_frame(YV12_BUFFER_CONFIG *source, extern void print_parms(VP8_CONFIG *ocf, char *filenam); extern unsigned int vp8_get_processor_freq(); extern void print_tree_update_probs(); -extern int vp8cx_create_encoder_threads(VP8_COMP *cpi); -extern void vp8cx_remove_encoder_threads(VP8_COMP *cpi); int vp8_calc_ss_err(YV12_BUFFER_CONFIG *source, YV12_BUFFER_CONFIG *dest); diff --git a/vp8/vp8cx.mk b/vp8/vp8cx.mk index 15e0451ed..c3f9aa048 100644 --- a/vp8/vp8cx.mk +++ b/vp8/vp8cx.mk @@ -30,6 +30,7 @@ VP8_CX_SRCS-yes += encoder/encodeintra.c VP8_CX_SRCS-yes += encoder/encodemb.c VP8_CX_SRCS-yes += encoder/encodemv.c VP8_CX_SRCS-$(CONFIG_MULTITHREAD) += encoder/ethreading.c +VP8_CX_SRCS-$(CONFIG_MULTITHREAD) += encoder/ethreading.h VP8_CX_SRCS-yes += encoder/firstpass.c VP8_CX_SRCS-yes += encoder/block.h VP8_CX_SRCS-yes += encoder/boolhuff.h