add frame skew to ydiff
authorGood Guy <good1.2guy@gmail.com>
Mon, 30 Jan 2017 21:51:55 +0000 (14:51 -0700)
committerGood Guy <good1.2guy@gmail.com>
Mon, 30 Jan 2017 21:51:55 +0000 (14:51 -0700)
cinelerra-5.1/cinelerra/ydiff.C

index bb8dda2da23e8a9c5ab530100c759452bacf9fbd..c0322c3949e679bc041b263a52bd87bf84de7112 100644 (file)
@@ -367,6 +367,11 @@ int main(int ac, char **av)
   int64_t err = 0;
   int frm_no = 0;
 
+  if( ac>3 && (ret=atoi(av[3])) ) {
+    while( ret > 0 ) { a.read_frame(); --ret; }
+    while( ret < 0 ) { b.read_frame(); ++ret; }
+  }
+
   while( !done ) {
     AVFrame *ap = a.read_frame();
     if( !ap ) break;