swr: fix "control reaches end of non-void function" compiler warning.

This commit is contained in:
Clément Bœsch 2011-11-16 20:39:16 +01:00
parent 809631af1a
commit 7cdfce4f63
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ static double get(const uint8_t *a[], int ch, int index, int ch_count, enum AVSa
case AV_SAMPLE_FMT_S32: return ((const int32_t*)p)[index]/2147483647.0;
case AV_SAMPLE_FMT_FLT: return ((const float *)p)[index];
case AV_SAMPLE_FMT_DBL: return ((const double *)p)[index];
default: av_assert2(0);
default: av_assert0(0);
}
}