avfilter/f_reverse: add missing S64(P) sample format support

This commit is contained in:
Paul B Mahol 2021-10-02 17:50:14 +02:00
parent ba63078b0f
commit db7bd99ebf

View File

@ -167,6 +167,12 @@ static void reverse_samples_planar(AVFrame *out)
FFSWAP(int32_t, dst[i], dst[j]);
}
break;
case AV_SAMPLE_FMT_S64P: {
int64_t *dst = (int64_t *)out->extended_data[p];
for (int i = 0, j = out->nb_samples - 1; i < j; i++, j--)
FFSWAP(int64_t, dst[i], dst[j]);
}
break;
case AV_SAMPLE_FMT_FLTP: {
float *dst = (float *)out->extended_data[p];
for (int i = 0, j = out->nb_samples - 1; i < j; i++, j--)
@ -209,6 +215,13 @@ static void reverse_samples_packed(AVFrame *out)
FFSWAP(int32_t, dst[i * channels + p], dst[j * channels + p]);
}
break;
case AV_SAMPLE_FMT_S64: {
int64_t *dst = (int64_t *)out->extended_data[0];
for (int i = 0, j = out->nb_samples - 1; i < j; i++, j--)
for (int p = 0; p < channels; p++)
FFSWAP(int64_t, dst[i * channels + p], dst[j * channels + p]);
}
break;
case AV_SAMPLE_FMT_FLT: {
float *dst = (float *)out->extended_data[0];
for (int i = 0, j = out->nb_samples - 1; i < j; i++, j--)