Lines Matching refs:PCMDEF
42 #define PCMDEF(name, long_name, ext, uppercase) \
46 PCMDEF(f64be, "PCM 64-bit floating-point big-endian", NULL, F64BE)
47 PCMDEF(f64le, "PCM 64-bit floating-point little-endian", NULL, F64LE)
48 PCMDEF(f32be, "PCM 32-bit floating-point big-endian", NULL, F32BE)
49 PCMDEF(f32le, "PCM 32-bit floating-point little-endian", NULL, F32LE)
50 PCMDEF(s32be, "PCM signed 32-bit big-endian", NULL, S32BE)
51 PCMDEF(s32le, "PCM signed 32-bit little-endian", NULL, S32LE)
52 PCMDEF(s24be, "PCM signed 24-bit big-endian", NULL, S24BE)
53 PCMDEF(s24le, "PCM signed 24-bit little-endian", NULL, S24LE)
54 PCMDEF(s16be, "PCM signed 16-bit big-endian", AV_NE("sw", NULL), S16BE)
55 PCMDEF(s16le, "PCM signed 16-bit little-endian", AV_NE(NULL, "sw"), S16LE)
56 PCMDEF(s8, "PCM signed 8-bit", "sb", S8)
57 PCMDEF(u32be, "PCM unsigned 32-bit big-endian", NULL, U32BE)
58 PCMDEF(u32le, "PCM unsigned 32-bit little-endian", NULL, U32LE)
59 PCMDEF(u24be, "PCM unsigned 24-bit big-endian", NULL, U24BE)
60 PCMDEF(u24le, "PCM unsigned 24-bit little-endian", NULL, U24LE)
61 PCMDEF(u16be, "PCM unsigned 16-bit big-endian", AV_NE("uw", NULL), U16BE)
62 PCMDEF(u16le, "PCM unsigned 16-bit little-endian", AV_NE(NULL, "uw"), U16LE)
63 PCMDEF(u8, "PCM unsigned 8-bit", "ub", U8)
64 PCMDEF(alaw, "PCM A-law", "al", ALAW)
65 PCMDEF(mulaw, "PCM mu-law", "ul", MULAW)
66 PCMDEF(vidc, "PCM Archimedes VIDC", NULL, VIDC)