fftools/ffmpeg: add a function adding a destination filter for InputStream

This way filtering code does not directly mess with InputStream
internals. Will become more useful in following commits.
This commit is contained in:
Anton Khirnov
2023-04-11 12:57:30 +02:00
parent c7438e8737
commit ae071c9e39
3 changed files with 10 additions and 5 deletions

View File

@@ -880,6 +880,7 @@ void ifile_close(InputFile **f);
int ifile_get_packet(InputFile *f, AVPacket **pkt);
void ist_output_add(InputStream *ist, OutputStream *ost);
void ist_filter_add(InputStream *ist, InputFilter *ifilter);
/* iterate over all input streams in all input files;
* pass NULL to start iteration */