Mercurial > libavcodec.hg
comparison audioconvert.c @ 7825:8d5e06d2eed8 libavcodec
Drop deprecated SAMPLE_FMT_S24.
| author | michael |
|---|---|
| date | Mon, 08 Sep 2008 15:24:16 +0000 |
| parents | 1302ec81afc0 |
| children | 24f2b8cc7918 |
comparison
equal
deleted
inserted
replaced
| 7824:635ed2559262 | 7825:8d5e06d2eed8 |
|---|---|
| 35 | 35 |
| 36 /** this table gives more information about formats */ | 36 /** this table gives more information about formats */ |
| 37 static const SampleFmtInfo sample_fmt_info[SAMPLE_FMT_NB] = { | 37 static const SampleFmtInfo sample_fmt_info[SAMPLE_FMT_NB] = { |
| 38 [SAMPLE_FMT_U8] = { .name = "u8", .bits = 8 }, | 38 [SAMPLE_FMT_U8] = { .name = "u8", .bits = 8 }, |
| 39 [SAMPLE_FMT_S16] = { .name = "s16", .bits = 16 }, | 39 [SAMPLE_FMT_S16] = { .name = "s16", .bits = 16 }, |
| 40 [SAMPLE_FMT_S24] = { .name = "s24", .bits = 24 }, | |
| 41 [SAMPLE_FMT_S32] = { .name = "s32", .bits = 32 }, | 40 [SAMPLE_FMT_S32] = { .name = "s32", .bits = 32 }, |
| 42 [SAMPLE_FMT_FLT] = { .name = "flt", .bits = 32 }, | 41 [SAMPLE_FMT_FLT] = { .name = "flt", .bits = 32 }, |
| 43 [SAMPLE_FMT_DBL] = { .name = "dbl", .bits = 64 }, | 42 [SAMPLE_FMT_DBL] = { .name = "dbl", .bits = 64 }, |
| 44 }; | 43 }; |
| 45 | 44 |
