Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2011-03-26 15:55:30 +0300
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2011-03-29 01:07:52 +0400
commit46027c7286144294dee565946dccb59f1a8dfeca (patch)
treea4bd06202a3882ae15b59c252c75f0b39ced2283 /libavcodec/thread.h
parent95c8bb03edf5d5c7310947819c4c8691a5e3dfb0 (diff)
Unbreak avcodec_thread_init
avcodec_thread_init currently doesn't do anything at all with pthreads enabled.
Diffstat (limited to 'libavcodec/thread.h')
-rw-r--r--libavcodec/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/thread.h b/libavcodec/thread.h
index 485f4ec188..9cfb31d5a1 100644
--- a/libavcodec/thread.h
+++ b/libavcodec/thread.h
@@ -108,7 +108,7 @@ int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f);
*/
void ff_thread_release_buffer(AVCodecContext *avctx, AVFrame *f);
-int ff_thread_init(AVCodecContext *s, int thread_count);
+int ff_thread_init(AVCodecContext *s);
void ff_thread_free(AVCodecContext *s);
#endif /* AVCODEC_THREAD_H */