]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/af_atempo.c
aarch64: vp9itxfm: Don't repeatedly set x9 when nothing overwrites it
[ffmpeg] / libavfilter / af_atempo.c
index d5d29b3665d45c687f6ee681ca046a58eb221394..a4878820db4053bdb47eda97d88b6dda2064589b 100644 (file)
@@ -914,8 +914,8 @@ static int yae_flush(ATempoContext *atempo,
 
     atempo->state = YAE_FLUSH_OUTPUT;
 
-    if (atempo->position[0] == frag->position[0] + frag->nsamples &&
-        atempo->position[1] == frag->position[1] + frag->nsamples) {
+    if (atempo->position[0] >= frag->position[0] + frag->nsamples &&
+        atempo->position[1] >= frag->position[1] + frag->nsamples) {
         // the current fragment is already flushed:
         return 0;
     }
@@ -1014,7 +1014,7 @@ static int query_formats(AVFilterContext *ctx)
     };
     int ret;
 
-    layouts = ff_all_channel_layouts();
+    layouts = ff_all_channel_counts();
     if (!layouts) {
         return AVERROR(ENOMEM);
     }