diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-12-03 15:21:19 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-12-03 15:21:19 +0000 |
commit | 0a8360c4f9cf3f6170dfaff5af2b3a5e8c41755d (patch) | |
tree | 38ff36d79c51380de85e3660561469857dafb246 /libavcodec/takdec.c | |
parent | 694dc6251e97fc48978700d71ca5747ec893f11f (diff) | |
download | ffmpeg-0a8360c4f9cf3f6170dfaff5af2b3a5e8c41755d.tar.gz |
takdec: add .sample_fmts
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/takdec.c')
-rw-r--r-- | libavcodec/takdec.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/takdec.c b/libavcodec/takdec.c index 76bde55c56..11202967d2 100644 --- a/libavcodec/takdec.c +++ b/libavcodec/takdec.c @@ -977,4 +977,8 @@ AVCodec ff_tak_decoder = { .decode = tak_decode_frame, .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("TAK (Tom's lossless Audio Kompressor)"), + .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_U8P, + AV_SAMPLE_FMT_S16P, + AV_SAMPLE_FMT_S32P, + AV_SAMPLE_FMT_NONE }, }; |