1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

libcelt_dec: set sample_fmt.

This fixes a regression introduced by the merging of patch fc2dd2c.

Signed-off-by: Nicolas George <nicolas.george@normalesup.org>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Nicolas George
2011-10-24 19:55:49 +02:00
committed by Michael Niedermayer
parent d1ee98c94b
commit f44c816566

View File

@@ -91,6 +91,7 @@ static av_cold int libcelt_dec_init(AVCodecContext *c)
"improperly decoded by libcelt for version 0x%x.\n", "improperly decoded by libcelt for version 0x%x.\n",
version, lib_version); version, lib_version);
} }
c->sample_fmt = AV_SAMPLE_FMT_S16;
return 0; return 0;
} }