]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/interlace.h
h264_metadata: Always add the SEI user data to the first access unit
[ffmpeg] / libavfilter / interlace.h
index 2d470508f4bd41f0208d66e1b9d8bf38a21ce753..fa571bd6eb6c834684a6522b8f53d326f97ee569 100644 (file)
@@ -47,9 +47,9 @@ enum FieldType {
 typedef struct InterlaceContext {
     const AVClass *class;
     enum ScanMode scan;    // top or bottom field first scanning
-    int lowpass;           // enable or disable low pass filterning
+    int lowpass;           // enable or disable low pass filtering
     AVFrame *cur, *next;   // the two frames from which the new one is obtained
-    int got_output;        // signal an output frame is reday to request_frame()
+    int got_output;        // signal an output frame is ready to request_frame()
     void (*lowpass_line)(uint8_t *dstp, ptrdiff_t linesize, const uint8_t *srcp,
                          const uint8_t *srcp_above, const uint8_t *srcp_below);
 } InterlaceContext;