fftools/ffmpeg_filter: move InputFilter.eof to private data

It is not used outside of ffmpeg_filter.
This commit is contained in:
Anton Khirnov 2023-04-30 12:24:50 +02:00
parent c7c73a3250
commit e8df737cb2
2 changed files with 5 additions and 4 deletions

View File

@ -289,8 +289,6 @@ typedef struct InputFilter {
AVBufferRef *hw_frames_ctx;
int32_t *displaymatrix;
int eof;
} InputFilter;
typedef struct OutputFilter {

View File

@ -55,6 +55,8 @@ static FilterGraphPriv *fgp_from_fg(FilterGraph *fg)
typedef struct InputFilterPriv {
InputFilter ifilter;
int eof;
AVRational time_base;
AVFifo *frame_queue;
@ -1353,7 +1355,8 @@ int configure_filtergraph(FilterGraph *fg)
/* send the EOFs for the finished inputs */
for (i = 0; i < fg->nb_inputs; i++) {
if (fg->inputs[i]->eof) {
InputFilterPriv *ifp = ifp_from_ifilter(fg->inputs[i]);
if (ifp->eof) {
ret = av_buffersrc_add_frame(fg->inputs[i]->filter, NULL);
if (ret < 0)
goto fail;
@ -1500,7 +1503,7 @@ int ifilter_send_eof(InputFilter *ifilter, int64_t pts, AVRational tb)
InputFilterPriv *ifp = ifp_from_ifilter(ifilter);
int ret;
ifilter->eof = 1;
ifp->eof = 1;
if (ifilter->filter) {
pts = av_rescale_q_rnd(pts, tb, ifp->time_base,