2015-08-06 04:00:31 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 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.
|
|
|
|
*/
|
|
|
|
|
2015-08-13 18:25:39 +02:00
|
|
|
#ifndef VP10_ENCODER_ETHREAD_H_
|
|
|
|
#define VP10_ENCODER_ETHREAD_H_
|
2015-08-06 04:00:31 +02:00
|
|
|
|
2015-09-10 06:05:42 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-08-13 18:42:27 +02:00
|
|
|
struct VP10_COMP;
|
2015-08-06 04:00:31 +02:00
|
|
|
struct ThreadData;
|
|
|
|
|
|
|
|
typedef struct EncWorkerData {
|
2015-08-13 18:42:27 +02:00
|
|
|
struct VP10_COMP *cpi;
|
2015-08-06 04:00:31 +02:00
|
|
|
struct ThreadData *td;
|
|
|
|
int start;
|
|
|
|
} EncWorkerData;
|
|
|
|
|
2015-08-13 18:42:27 +02:00
|
|
|
void vp10_encode_tiles_mt(struct VP10_COMP *cpi);
|
2015-08-06 04:00:31 +02:00
|
|
|
|
2015-09-10 06:05:42 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2015-08-13 18:25:39 +02:00
|
|
|
#endif // VP10_ENCODER_ETHREAD_H_
|