You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
fftools/ffmpeg_filter: drop write-only FilterGraph.reconfiguration
This commit is contained in:
@@ -325,7 +325,6 @@ typedef struct FilterGraph {
|
|||||||
const char *graph_desc;
|
const char *graph_desc;
|
||||||
|
|
||||||
AVFilterGraph *graph;
|
AVFilterGraph *graph;
|
||||||
int reconfiguration;
|
|
||||||
// true when the filtergraph contains only meta filters
|
// true when the filtergraph contains only meta filters
|
||||||
// that do not modify the frame data
|
// that do not modify the frame data
|
||||||
int is_meta;
|
int is_meta;
|
||||||
|
@@ -1239,8 +1239,6 @@ int configure_filtergraph(FilterGraph *fg)
|
|||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
fg->reconfiguration = 1;
|
|
||||||
|
|
||||||
for (i = 0; i < fg->nb_inputs; i++) {
|
for (i = 0; i < fg->nb_inputs; i++) {
|
||||||
AVFrame *tmp;
|
AVFrame *tmp;
|
||||||
while (av_fifo_read(fg->inputs[i]->frame_queue, &tmp, 1) >= 0) {
|
while (av_fifo_read(fg->inputs[i]->frame_queue, &tmp, 1) >= 0) {
|
||||||
|
Reference in New Issue
Block a user