diff options
author | Stephen Hutchinson <qyot27@gmail.com> | 2022-02-19 16:18:00 -0500 |
---|---|---|
committer | Stephen Hutchinson <qyot27@gmail.com> | 2022-02-23 12:59:11 -0500 |
commit | 5df71a5e8d2d3511a8eb35800d037d75696c1f4d (patch) | |
tree | d47bfd55ccb4c2ccbeae6d4514e45c1b5d49a3a6 /libavformat/avisynth.c | |
parent | d27e1cb6332157d1bfb04e5f3c4686c459fc5644 (diff) | |
download | ffmpeg-5df71a5e8d2d3511a8eb35800d037d75696c1f4d.tar.gz |
avformat/avisynth: remove unused variable 'frameprop'
Since the check got simplified and stdbool was no longer necessary
to include, neither is that variable. Silences a warning.
Signed-off-by: Stephen Hutchinson <qyot27@gmail.com>
Diffstat (limited to 'libavformat/avisynth.c')
-rw-r--r-- | libavformat/avisynth.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/avisynth.c b/libavformat/avisynth.c index 2bd0c6949b..03489f180f 100644 --- a/libavformat/avisynth.c +++ b/libavformat/avisynth.c @@ -245,7 +245,6 @@ static int avisynth_create_stream_video(AVFormatContext *s, AVStream *st) const AVS_Map *avsmap; AVS_VideoFrame *frame; int framedata, error; - bool frameprop; int planar = 0; // 0: packed, 1: YUV, 2: Y8, 3: Planar RGB, 4: YUVA, 5: Planar RGBA st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO; |