diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-03-26 13:55:30 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-03-28 23:07:52 +0200 |
commit | 46027c7286144294dee565946dccb59f1a8dfeca (patch) | |
tree | a4bd06202a3882ae15b59c252c75f0b39ced2283 /libavcodec/thread.h | |
parent | 95c8bb03edf5d5c7310947819c4c8691a5e3dfb0 (diff) | |
download | ffmpeg-46027c7286144294dee565946dccb59f1a8dfeca.tar.gz |
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.h | 2 |
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 */ |