diff options
author | ha7sh17 <ha7sh17@gmail.com> | 2024-07-22 16:11:56 +0900 |
---|---|---|
committer | Gyan Doshi <ffmpeg@gyani.pro> | 2024-07-22 13:00:04 +0530 |
commit | 172da370e70a24c8528efead0b24053fc74e5648 (patch) | |
tree | b8b0838e82451f4799f01b60bf8a1f6179a12782 | |
parent | 9135dffd177d457a8a1781b9e6c6d400648165cb (diff) | |
download | ffmpeg-172da370e70a24c8528efead0b24053fc74e5648.tar.gz |
doc/filters: fix outpad labels in libvmaf_cuda example
-rw-r--r-- | doc/filters.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index a43e4b8055..2585d818ff 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -17071,8 +17071,8 @@ ffmpeg \ -hwaccel cuda -hwaccel_output_format cuda -codec:v av1_cuvid -i dis.obu \ -hwaccel cuda -hwaccel_output_format cuda -codec:v av1_cuvid -i ref.obu \ -filter_complex " - [0:v]scale_cuda=format=yuv420p[ref]; \ - [1:v]scale_cuda=format=yuv420p[dis]; \ + [0:v]scale_cuda=format=yuv420p[dis]; \ + [1:v]scale_cuda=format=yuv420p[ref]; \ [dis][ref]libvmaf_cuda=log_fmt=json:log_path=output.json " \ -f null - |