lavfi/buffersrc: disable deprecated warnings.
This commit is contained in:
parent
f29c28a884
commit
a5149607df
@ -172,13 +172,17 @@ static int attribute_align_arg av_buffersrc_add_frame_internal(AVFilterContext *
|
|||||||
static void compat_free_buffer(void *opaque, uint8_t *data)
|
static void compat_free_buffer(void *opaque, uint8_t *data)
|
||||||
{
|
{
|
||||||
AVFilterBufferRef *buf = opaque;
|
AVFilterBufferRef *buf = opaque;
|
||||||
|
AV_NOWARN_DEPRECATED(
|
||||||
avfilter_unref_buffer(buf);
|
avfilter_unref_buffer(buf);
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void compat_unref_buffer(void *opaque, uint8_t *data)
|
static void compat_unref_buffer(void *opaque, uint8_t *data)
|
||||||
{
|
{
|
||||||
AVBufferRef *buf = opaque;
|
AVBufferRef *buf = opaque;
|
||||||
|
AV_NOWARN_DEPRECATED(
|
||||||
av_buffer_unref(&buf);
|
av_buffer_unref(&buf);
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
int av_buffersrc_add_ref(AVFilterContext *ctx, AVFilterBufferRef *buf,
|
int av_buffersrc_add_ref(AVFilterContext *ctx, AVFilterBufferRef *buf,
|
||||||
@ -206,8 +210,10 @@ int av_buffersrc_add_ref(AVFilterContext *ctx, AVFilterBufferRef *buf,
|
|||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
AV_NOWARN_DEPRECATED(
|
||||||
if ((ret = avfilter_copy_buf_props(frame, buf)) < 0)
|
if ((ret = avfilter_copy_buf_props(frame, buf)) < 0)
|
||||||
goto fail;
|
goto fail;
|
||||||
|
)
|
||||||
|
|
||||||
#define WRAP_PLANE(ref_out, data, data_size) \
|
#define WRAP_PLANE(ref_out, data, data_size) \
|
||||||
do { \
|
do { \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user