diff options
author | Mickaƫl Raulet <mraulet@insa-rennes.fr> | 2013-10-20 22:48:03 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-22 19:55:47 +0200 |
commit | e146c326b91297ff900db632eb0dba30289e9ee6 (patch) | |
tree | ddd66afe6f0dd4c9d2c8f6dade92fda7e15b663e /libavcodec/utils.c | |
parent | 519395e4ddbdafc6049c88f2867cde9a1f270a57 (diff) | |
download | ffmpeg-e146c326b91297ff900db632eb0dba30289e9ee6.tar.gz |
avcodec/pthread: add wpp api
cherry picked from commit c7765f3295fe7dc0653161c6a3d3e1778b76ee67
cherry picked from commit 0008c4979fc1d1bc24d4d2c791715f6dd017563c
Conflicts:
libavcodec/utils.c
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 37d6ee3a64..cde8a5331b 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -3269,6 +3269,23 @@ int ff_thread_can_start_frame(AVCodecContext *avctx) return 1; } +int ff_alloc_entries(AVCodecContext *avctx, int count) +{ + return 0; +} + +void ff_reset_entries(AVCodecContext *avctx) +{ +} + +void ff_thread_await_progress2(AVCodecContext *avctx, int field, int thread, int shift) +{ +} + +void ff_thread_report_progress2(AVCodecContext *avctx, int field, int thread, int n) +{ +} + #endif enum AVMediaType avcodec_get_type(enum AVCodecID codec_id) |