mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
pthread_frame: use av_buffer_replace() to simplify code
This commit is contained in:
parent
16f8b96dfa
commit
56ff01e6ec
@ -297,16 +297,9 @@ static int update_context_from_thread(AVCodecContext *dst, AVCodecContext *src,
|
||||
|
||||
dst->hwaccel_flags = src->hwaccel_flags;
|
||||
|
||||
if (!!dst->internal->pool != !!src->internal->pool ||
|
||||
(dst->internal->pool && dst->internal->pool->data != src->internal->pool->data)) {
|
||||
av_buffer_unref(&dst->internal->pool);
|
||||
|
||||
if (src->internal->pool) {
|
||||
dst->internal->pool = av_buffer_ref(src->internal->pool);
|
||||
if (!dst->internal->pool)
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
}
|
||||
err = av_buffer_replace(&dst->internal->pool, src->internal->pool);
|
||||
if (err < 0)
|
||||
return err;
|
||||
}
|
||||
|
||||
if (for_user) {
|
||||
|
Loading…
Reference in New Issue
Block a user