diff options
author | Limin Wang <lance.lmwang@gmail.com> | 2019-09-24 18:18:08 +0800 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2019-09-28 20:20:28 +0200 |
commit | fd5fdca95337aaaf82e69af94c8a1a18fe1bce4e (patch) | |
tree | 953955114f6bc23cb84f3c248537d87ae3854f43 /libavfilter/framerate.h | |
parent | b4e7d3a0db94a496858faa099750e35b11c721c7 (diff) | |
download | ffmpeg-streaming-fd5fdca95337aaaf82e69af94c8a1a18fe1bce4e.zip ffmpeg-streaming-fd5fdca95337aaaf82e69af94c8a1a18fe1bce4e.tar.gz |
avfilter/vf_framerate: refine the filter_slice code for better readiablity
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavfilter/framerate.h')
-rw-r--r-- | libavfilter/framerate.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/framerate.h b/libavfilter/framerate.h index 8048dfa..2947c54 100644 --- a/libavfilter/framerate.h +++ b/libavfilter/framerate.h @@ -43,6 +43,7 @@ typedef struct FrameRateContext { int interp_end; ///< end of range to apply linear interpolation int line_size[4]; ///< bytes of pixel data per line for each plane + int height[4]; ///< height of each plane int vsub; AVRational srce_time_base; ///< timebase of source |