diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2018-03-30 12:01:58 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2018-03-30 12:01:58 +0200 |
commit | 11f8f9547dbfdd181fed6ffa8270d8c80ae69ef5 (patch) | |
tree | b5f2c69e434347f04e78baef04a48c1c9de21a10 /fftools/ffmpeg.c | |
parent | 9b22417de680fcae289eb4d0e036bc09912902eb (diff) | |
download | ffmpeg-11f8f9547dbfdd181fed6ffa8270d8c80ae69ef5.tar.gz |
fftools/ffmpeg: Remove an unused variable.
Fixes a warning:
fftools/ffmpeg.c:2201:22: warning: unused variable 'fg'
Diffstat (limited to 'fftools/ffmpeg.c')
-rw-r--r-- | fftools/ffmpeg.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index 4fcce8e204..4724f62fff 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -2198,7 +2198,6 @@ static int ifilter_send_eof(InputFilter *ifilter, int64_t pts) return ret; } else { // the filtergraph was never configured - FilterGraph *fg = ifilter->graph; if (ifilter->format < 0) ifilter_parameters_from_codecpar(ifilter, ifilter->ist->st->codecpar); if (ifilter->format < 0 && (ifilter->type == AVMEDIA_TYPE_AUDIO || ifilter->type == AVMEDIA_TYPE_VIDEO)) { |