forked from FFmpeg/FFmpeg
fftools/ffmpeg_filter: drop write-only FilterGraph.reconfiguration
This commit is contained in:
parent
87b4453ec6
commit
a664ec94e0
2 changed files with 0 additions and 3 deletions
|
@ -325,7 +325,6 @@ typedef struct FilterGraph {
|
|||
const char *graph_desc;
|
||||
|
||||
AVFilterGraph *graph;
|
||||
int reconfiguration;
|
||||
// true when the filtergraph contains only meta filters
|
||||
// that do not modify the frame data
|
||||
int is_meta;
|
||||
|
|
|
@ -1239,8 +1239,6 @@ int configure_filtergraph(FilterGraph *fg)
|
|||
goto fail;
|
||||
}
|
||||
|
||||
fg->reconfiguration = 1;
|
||||
|
||||
for (i = 0; i < fg->nb_inputs; i++) {
|
||||
AVFrame *tmp;
|
||||
while (av_fifo_read(fg->inputs[i]->frame_queue, &tmp, 1) >= 0) {
|
||||
|
|
Loading…
Add table
Reference in a new issue