Commit 3e06f6f0 authored by James Almer's avatar James Almer

avutil/frame: deprecate key_frame

Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent c7a86818
...@@ -572,7 +572,11 @@ static int decode_receive_frame_internal(AVCodecContext *avctx, AVFrame *frame) ...@@ -572,7 +572,11 @@ static int decode_receive_frame_internal(AVCodecContext *avctx, AVFrame *frame)
if (!ret) { if (!ret) {
if (avctx->codec_type != AVMEDIA_TYPE_VIDEO) if (avctx->codec_type != AVMEDIA_TYPE_VIDEO)
frame->flags |= AV_FRAME_FLAG_KEY; frame->flags |= AV_FRAME_FLAG_KEY;
#if FF_API_FRAME_KEY
FF_DISABLE_DEPRECATION_WARNINGS
frame->key_frame = !!(frame->flags & AV_FRAME_FLAG_KEY); frame->key_frame = !!(frame->flags & AV_FRAME_FLAG_KEY);
FF_ENABLE_DEPRECATION_WARNINGS
#endif
#if FF_API_INTERLACED_FRAME #if FF_API_INTERLACED_FRAME
FF_DISABLE_DEPRECATION_WARNINGS FF_DISABLE_DEPRECATION_WARNINGS
frame->interlaced_frame = !!(frame->flags & AV_FRAME_FLAG_INTERLACED); frame->interlaced_frame = !!(frame->flags & AV_FRAME_FLAG_INTERLACED);
......
...@@ -192,8 +192,12 @@ int ff_encode_get_frame(AVCodecContext *avctx, AVFrame *frame) ...@@ -192,8 +192,12 @@ int ff_encode_get_frame(AVCodecContext *avctx, AVFrame *frame)
av_frame_move_ref(frame, avci->buffer_frame); av_frame_move_ref(frame, avci->buffer_frame);
#if FF_API_FRAME_KEY
FF_DISABLE_DEPRECATION_WARNINGS
if (frame->key_frame) if (frame->key_frame)
frame->flags |= AV_FRAME_FLAG_KEY; frame->flags |= AV_FRAME_FLAG_KEY;
FF_ENABLE_DEPRECATION_WARNINGS
#endif
#if FF_API_INTERLACED_FRAME #if FF_API_INTERLACED_FRAME
FF_DISABLE_DEPRECATION_WARNINGS FF_DISABLE_DEPRECATION_WARNINGS
if (frame->interlaced_frame) if (frame->interlaced_frame)
......
...@@ -256,8 +256,12 @@ FF_DISABLE_DEPRECATION_WARNINGS ...@@ -256,8 +256,12 @@ FF_DISABLE_DEPRECATION_WARNINGS
FF_ENABLE_DEPRECATION_WARNINGS FF_ENABLE_DEPRECATION_WARNINGS
#endif #endif
#if FF_API_FRAME_KEY
FF_DISABLE_DEPRECATION_WARNINGS
if (copy->key_frame) if (copy->key_frame)
copy->flags |= AV_FRAME_FLAG_KEY; copy->flags |= AV_FRAME_FLAG_KEY;
FF_ENABLE_DEPRECATION_WARNINGS
#endif
ret = ff_filter_frame(ctx->outputs[0], copy); ret = ff_filter_frame(ctx->outputs[0], copy);
if (ret < 0) if (ret < 0)
......
...@@ -301,7 +301,9 @@ static int request_frame(AVFilterLink *link) ...@@ -301,7 +301,9 @@ static int request_frame(AVFilterLink *link)
frame->pts = ctx->pts; frame->pts = ctx->pts;
frame->duration = 1; frame->duration = 1;
#if FF_API_FRAME_KEY
frame->key_frame = 1; frame->key_frame = 1;
#endif
frame->flags |= AV_FRAME_FLAG_KEY frame->flags |= AV_FRAME_FLAG_KEY
#if FF_API_INTERLACED_FRAME #if FF_API_INTERLACED_FRAME
frame->interlaced_frame = 0; frame->interlaced_frame = 0;
......
...@@ -397,7 +397,12 @@ static int activate(AVFilterContext *ctx) ...@@ -397,7 +397,12 @@ static int activate(AVFilterContext *ctx)
if (!frame) if (!frame)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
#if FF_API_FRAME_KEY
FF_DISABLE_DEPRECATION_WARNINGS
frame->key_frame = 1; frame->key_frame = 1;
FF_ENABLE_DEPRECATION_WARNINGS
#endif
frame->flags |= AV_FRAME_FLAG_KEY; frame->flags |= AV_FRAME_FLAG_KEY;
#if FF_API_INTERLACED_FRAME #if FF_API_INTERLACED_FRAME
FF_DISABLE_DEPRECATION_WARNINGS FF_DISABLE_DEPRECATION_WARNINGS
......
...@@ -184,7 +184,11 @@ static int activate(AVFilterContext *ctx) ...@@ -184,7 +184,11 @@ static int activate(AVFilterContext *ctx)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
frame->pts = test->pts; frame->pts = test->pts;
frame->duration = 1; frame->duration = 1;
#if FF_API_PKT_DURATION
FF_DISABLE_DEPRECATION_WARNINGS
frame->key_frame = 1; frame->key_frame = 1;
FF_ENABLE_DEPRECATION_WARNINGS
#endif
frame->flags |= AV_FRAME_FLAG_KEY; frame->flags |= AV_FRAME_FLAG_KEY;
#if FF_API_INTERLACED_FRAME #if FF_API_INTERLACED_FRAME
FF_DISABLE_DEPRECATION_WARNINGS FF_DISABLE_DEPRECATION_WARNINGS
......
...@@ -55,7 +55,6 @@ FF_DISABLE_DEPRECATION_WARNINGS ...@@ -55,7 +55,6 @@ FF_DISABLE_DEPRECATION_WARNINGS
FF_ENABLE_DEPRECATION_WARNINGS FF_ENABLE_DEPRECATION_WARNINGS
#endif #endif
frame->time_base = (AVRational){ 0, 1 }; frame->time_base = (AVRational){ 0, 1 };
frame->key_frame = 1;
frame->sample_aspect_ratio = (AVRational){ 0, 1 }; frame->sample_aspect_ratio = (AVRational){ 0, 1 };
frame->format = -1; /* unknown */ frame->format = -1; /* unknown */
frame->extended_data = frame->data; frame->extended_data = frame->data;
...@@ -265,7 +264,11 @@ static int frame_copy_props(AVFrame *dst, const AVFrame *src, int force_copy) ...@@ -265,7 +264,11 @@ static int frame_copy_props(AVFrame *dst, const AVFrame *src, int force_copy)
{ {
int ret; int ret;
#if FF_API_FRAME_KEY
FF_DISABLE_DEPRECATION_WARNINGS
dst->key_frame = src->key_frame; dst->key_frame = src->key_frame;
FF_ENABLE_DEPRECATION_WARNINGS
#endif
dst->pict_type = src->pict_type; dst->pict_type = src->pict_type;
dst->sample_aspect_ratio = src->sample_aspect_ratio; dst->sample_aspect_ratio = src->sample_aspect_ratio;
dst->crop_top = src->crop_top; dst->crop_top = src->crop_top;
......
...@@ -416,10 +416,15 @@ typedef struct AVFrame { ...@@ -416,10 +416,15 @@ typedef struct AVFrame {
*/ */
int format; int format;
#if FF_API_FRAME_KEY
/** /**
* 1 -> keyframe, 0-> not * 1 -> keyframe, 0-> not
*
* @deprecated Use AV_FRAME_FLAG_KEY instead
*/ */
attribute_deprecated
int key_frame; int key_frame;
#endif
/** /**
* Picture type of the frame. * Picture type of the frame.
......
...@@ -116,6 +116,7 @@ ...@@ -116,6 +116,7 @@
#define FF_API_HDR_VIVID_THREE_SPLINE (LIBAVUTIL_VERSION_MAJOR < 59) #define FF_API_HDR_VIVID_THREE_SPLINE (LIBAVUTIL_VERSION_MAJOR < 59)
#define FF_API_FRAME_PKT (LIBAVUTIL_VERSION_MAJOR < 59) #define FF_API_FRAME_PKT (LIBAVUTIL_VERSION_MAJOR < 59)
#define FF_API_INTERLACED_FRAME (LIBAVUTIL_VERSION_MAJOR < 59) #define FF_API_INTERLACED_FRAME (LIBAVUTIL_VERSION_MAJOR < 59)
#define FF_API_FRAME_KEY (LIBAVUTIL_VERSION_MAJOR < 59)
/** /**
* @} * @}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment