|
|
@ -38,12 +38,14 @@ |
|
|
|
#include "internal.h" |
|
|
|
#include "internal.h" |
|
|
|
#include "pthread_internal.h" |
|
|
|
#include "pthread_internal.h" |
|
|
|
#include "thread.h" |
|
|
|
#include "thread.h" |
|
|
|
|
|
|
|
#include "version.h" |
|
|
|
|
|
|
|
|
|
|
|
#include "libavutil/avassert.h" |
|
|
|
#include "libavutil/avassert.h" |
|
|
|
#include "libavutil/buffer.h" |
|
|
|
#include "libavutil/buffer.h" |
|
|
|
#include "libavutil/common.h" |
|
|
|
#include "libavutil/common.h" |
|
|
|
#include "libavutil/cpu.h" |
|
|
|
#include "libavutil/cpu.h" |
|
|
|
#include "libavutil/frame.h" |
|
|
|
#include "libavutil/frame.h" |
|
|
|
|
|
|
|
#include "libavutil/internal.h" |
|
|
|
#include "libavutil/log.h" |
|
|
|
#include "libavutil/log.h" |
|
|
|
#include "libavutil/mem.h" |
|
|
|
#include "libavutil/mem.h" |
|
|
|
|
|
|
|
|
|
|
@ -208,7 +210,11 @@ static int update_context_from_thread(AVCodecContext *dst, AVCodecContext *src, |
|
|
|
|
|
|
|
|
|
|
|
dst->bits_per_coded_sample = src->bits_per_coded_sample; |
|
|
|
dst->bits_per_coded_sample = src->bits_per_coded_sample; |
|
|
|
dst->sample_aspect_ratio = src->sample_aspect_ratio; |
|
|
|
dst->sample_aspect_ratio = src->sample_aspect_ratio; |
|
|
|
|
|
|
|
#if FF_API_AFD |
|
|
|
|
|
|
|
FF_DISABLE_DEPRECATION_WARNINGS |
|
|
|
dst->dtg_active_format = src->dtg_active_format; |
|
|
|
dst->dtg_active_format = src->dtg_active_format; |
|
|
|
|
|
|
|
FF_ENABLE_DEPRECATION_WARNINGS |
|
|
|
|
|
|
|
#endif /* FF_API_AFD */ |
|
|
|
|
|
|
|
|
|
|
|
dst->profile = src->profile; |
|
|
|
dst->profile = src->profile; |
|
|
|
dst->level = src->level; |
|
|
|
dst->level = src->level; |
|
|
|