mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
vsink_nullsink: switch to filter_frame
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
45eed9b197
commit
c262e8cff6
@ -20,13 +20,9 @@
|
||||
#include "internal.h"
|
||||
#include "libavutil/internal.h"
|
||||
|
||||
static int start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int end_frame(AVFilterLink *link)
|
||||
static int filter_frame(AVFilterLink *link, AVFilterBufferRef *frame)
|
||||
{
|
||||
avfilter_unref_bufferp(&frame);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -34,8 +30,7 @@ static const AVFilterPad avfilter_vsink_nullsink_inputs[] = {
|
||||
{
|
||||
.name = "default",
|
||||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.start_frame = start_frame,
|
||||
.end_frame = end_frame,
|
||||
.filter_frame = filter_frame,
|
||||
},
|
||||
{ NULL },
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user