diff options
author | Mans Rullgard <mans@mansr.com> | 2012-08-18 13:20:09 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-08-18 14:20:57 +0100 |
commit | 11434c9b137257c4434a7cf2cf18297591f87a14 (patch) | |
tree | 56211d89f3885fbcd45bafb486dc01bad0506722 /libavcodec/pthread.c | |
parent | 7f9aaa499b8a5ce066cc17aac6ebbdf0111980b6 (diff) | |
download | ffmpeg-11434c9b137257c4434a7cf2cf18297591f87a14.tar.gz |
pthread: add const to AVCodec pointers
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/pthread.c')
-rw-r--r-- | libavcodec/pthread.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/pthread.c b/libavcodec/pthread.c index fd2dc1801e..e0489acffb 100644 --- a/libavcodec/pthread.c +++ b/libavcodec/pthread.c @@ -357,7 +357,7 @@ static attribute_align_arg void *frame_worker_thread(void *arg) PerThreadContext *p = arg; FrameThreadContext *fctx = p->parent; AVCodecContext *avctx = p->avctx; - AVCodec *codec = avctx->codec; + const AVCodec *codec = avctx->codec; while (1) { if (p->state == STATE_INPUT_READY && !fctx->die) { @@ -517,7 +517,7 @@ static int submit_packet(PerThreadContext *p, AVPacket *avpkt) { FrameThreadContext *fctx = p->parent; PerThreadContext *prev_thread = fctx->prev_thread; - AVCodec *codec = p->avctx->codec; + const AVCodec *codec = p->avctx->codec; uint8_t *buf = p->avpkt.data; if (!avpkt->size && !(codec->capabilities & CODEC_CAP_DELAY)) return 0; @@ -720,7 +720,7 @@ static void park_frame_worker_threads(FrameThreadContext *fctx, int thread_count static void frame_thread_free(AVCodecContext *avctx, int thread_count) { FrameThreadContext *fctx = avctx->thread_opaque; - AVCodec *codec = avctx->codec; + const AVCodec *codec = avctx->codec; int i; park_frame_worker_threads(fctx, thread_count); @@ -777,7 +777,7 @@ static void frame_thread_free(AVCodecContext *avctx, int thread_count) static int frame_thread_init(AVCodecContext *avctx) { int thread_count = avctx->thread_count; - AVCodec *codec = avctx->codec; + const AVCodec *codec = avctx->codec; AVCodecContext *src = avctx; FrameThreadContext *fctx; int i, err = 0; |