summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGyan Doshi <ffmpeg@gyani.pro>2019-11-19 14:04:23 +0530
committerGyan Doshi <ffmpeg@gyani.pro>2019-11-19 14:04:23 +0530
commit6e0461d8d446d07c77d780ffda4942db9f94b8c6 (patch)
tree44131052ae68266e3f10560501bf79f488b1d835
parent2ff444bd3ade79e63859f0d5ea53d6274edbf223 (diff)
doc/filters: correct psnr example
AVTB is 1/AV_TIME_BASE
-rw-r--r--doc/filters.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index c04421b758..035094d8f8 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -15069,7 +15069,7 @@ is stored in @file{stats.log}.
@item
Another example with different containers:
@example
-ffmpeg -i main.mpg -i ref.mkv -lavfi "[0:v]settb=1/AVTB,setpts=PTS-STARTPTS[main];[1:v]settb=1/AVTB,setpts=PTS-STARTPTS[ref];[main][ref]psnr" -f null -
+ffmpeg -i main.mpg -i ref.mkv -lavfi "[0:v]settb=AVTB,setpts=PTS-STARTPTS[main];[1:v]settb=AVTB,setpts=PTS-STARTPTS[ref];[main][ref]psnr" -f null -
@end example
@end itemize