diff options
Diffstat (limited to 'apps/codecs/libpcm/support_formats.h')
-rw-r--r-- | apps/codecs/libpcm/support_formats.h | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/apps/codecs/libpcm/support_formats.h b/apps/codecs/libpcm/support_formats.h index 0a6ea339f4..b1e089e464 100644 --- a/apps/codecs/libpcm/support_formats.h +++ b/apps/codecs/libpcm/support_formats.h | |||
@@ -18,8 +18,8 @@ | |||
18 | * KIND, either express or implied. | 18 | * KIND, either express or implied. |
19 | * | 19 | * |
20 | ****************************************************************************/ | 20 | ****************************************************************************/ |
21 | #ifndef CODEC_LIBPCMS_SUPPORT_FORMATS_H | 21 | #ifndef CODEC_LIBPCM_SUPPORT_FORMATS_H |
22 | #define CODEC_LIBPCMS_SUPPORT_FORMATS_H | 22 | #define CODEC_LIBPCM_SUPPORT_FORMATS_H |
23 | 23 | ||
24 | #include "pcm_common.h" | 24 | #include "pcm_common.h" |
25 | 25 | ||
@@ -32,9 +32,24 @@ const struct pcm_codec *get_itut_g711_alaw_codec(void); | |||
32 | /* ITU-T G.711 mu-law */ | 32 | /* ITU-T G.711 mu-law */ |
33 | const struct pcm_codec *get_itut_g711_mulaw_codec(void); | 33 | const struct pcm_codec *get_itut_g711_mulaw_codec(void); |
34 | 34 | ||
35 | /* Intel DVI ADPCM */ | 35 | /* Intel DVI ADPCM (IMA ADPCM) */ |
36 | const struct pcm_codec *get_dvi_adpcm_codec(void); | 36 | const struct pcm_codec *get_dvi_adpcm_codec(void); |
37 | 37 | ||
38 | /* IEEE float */ | 38 | /* IEEE float */ |
39 | const struct pcm_codec *get_ieee_float_codec(void); | 39 | const struct pcm_codec *get_ieee_float_codec(void); |
40 | |||
41 | /* Microsoft ADPCM */ | ||
42 | const struct pcm_codec *get_ms_adpcm_codec(void); | ||
43 | |||
44 | /* Dialogic OKI ADPCM */ | ||
45 | const struct pcm_codec *get_dialogic_oki_adpcm_codec(void); | ||
46 | |||
47 | /* YAMAHA ADPCM */ | ||
48 | const struct pcm_codec *get_yamaha_adpcm_codec(void); | ||
49 | |||
50 | /* Apple QuickTime IMA ADPCM */ | ||
51 | const struct pcm_codec *get_qt_ima_adpcm_codec(void); | ||
52 | |||
53 | /* Adobe SWF ADPCM */ | ||
54 | const struct pcm_codec *get_swf_adpcm_codec(void); | ||
40 | #endif | 55 | #endif |