You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

632 lines
24KB

  1. /*
  2. * PCM codecs
  3. * Copyright (c) 2001 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * PCM codecs
  24. */
  25. #include "libavutil/attributes.h"
  26. #include "avcodec.h"
  27. #include "bytestream.h"
  28. #include "internal.h"
  29. #include "mathops.h"
  30. #include "pcm_tablegen.h"
  31. static av_cold int pcm_encode_init(AVCodecContext *avctx)
  32. {
  33. avctx->frame_size = 0;
  34. switch (avctx->codec->id) {
  35. case AV_CODEC_ID_PCM_ALAW:
  36. pcm_alaw_tableinit();
  37. break;
  38. case AV_CODEC_ID_PCM_MULAW:
  39. pcm_ulaw_tableinit();
  40. break;
  41. default:
  42. break;
  43. }
  44. avctx->bits_per_coded_sample = av_get_bits_per_sample(avctx->codec->id);
  45. avctx->block_align = avctx->channels * avctx->bits_per_coded_sample / 8;
  46. avctx->bit_rate = avctx->block_align * avctx->sample_rate * 8;
  47. avctx->coded_frame = avcodec_alloc_frame();
  48. if (!avctx->coded_frame)
  49. return AVERROR(ENOMEM);
  50. return 0;
  51. }
  52. static av_cold int pcm_encode_close(AVCodecContext *avctx)
  53. {
  54. av_freep(&avctx->coded_frame);
  55. return 0;
  56. }
  57. /**
  58. * Write PCM samples macro
  59. * @param type Datatype of native machine format
  60. * @param endian bytestream_put_xxx() suffix
  61. * @param src Source pointer (variable name)
  62. * @param dst Destination pointer (variable name)
  63. * @param n Total number of samples (variable name)
  64. * @param shift Bitshift (bits)
  65. * @param offset Sample value offset
  66. */
  67. #define ENCODE(type, endian, src, dst, n, shift, offset) \
  68. samples_ ## type = (const type *) src; \
  69. for (; n > 0; n--) { \
  70. register type v = (*samples_ ## type++ >> shift) + offset; \
  71. bytestream_put_ ## endian(&dst, v); \
  72. }
  73. #define ENCODE_PLANAR(type, endian, dst, n, shift, offset) \
  74. n /= avctx->channels; \
  75. for (c = 0; c < avctx->channels; c++) { \
  76. int i; \
  77. samples_ ## type = (const type *) frame->extended_data[c]; \
  78. for (i = n; i > 0; i--) { \
  79. register type v = (*samples_ ## type++ >> shift) + offset; \
  80. bytestream_put_ ## endian(&dst, v); \
  81. } \
  82. }
  83. static int pcm_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
  84. const AVFrame *frame, int *got_packet_ptr)
  85. {
  86. int n, c, sample_size, v, ret;
  87. const short *samples;
  88. unsigned char *dst;
  89. const uint8_t *samples_uint8_t;
  90. const int16_t *samples_int16_t;
  91. const int32_t *samples_int32_t;
  92. const int64_t *samples_int64_t;
  93. const uint16_t *samples_uint16_t;
  94. const uint32_t *samples_uint32_t;
  95. sample_size = av_get_bits_per_sample(avctx->codec->id) / 8;
  96. n = frame->nb_samples * avctx->channels;
  97. samples = (const short *)frame->data[0];
  98. if ((ret = ff_alloc_packet2(avctx, avpkt, n * sample_size)))
  99. return ret;
  100. dst = avpkt->data;
  101. switch (avctx->codec->id) {
  102. case AV_CODEC_ID_PCM_U32LE:
  103. ENCODE(uint32_t, le32, samples, dst, n, 0, 0x80000000)
  104. break;
  105. case AV_CODEC_ID_PCM_U32BE:
  106. ENCODE(uint32_t, be32, samples, dst, n, 0, 0x80000000)
  107. break;
  108. case AV_CODEC_ID_PCM_S24LE:
  109. ENCODE(int32_t, le24, samples, dst, n, 8, 0)
  110. break;
  111. case AV_CODEC_ID_PCM_S24LE_PLANAR:
  112. ENCODE_PLANAR(int32_t, le24, dst, n, 8, 0)
  113. break;
  114. case AV_CODEC_ID_PCM_S24BE:
  115. ENCODE(int32_t, be24, samples, dst, n, 8, 0)
  116. break;
  117. case AV_CODEC_ID_PCM_U24LE:
  118. ENCODE(uint32_t, le24, samples, dst, n, 8, 0x800000)
  119. break;
  120. case AV_CODEC_ID_PCM_U24BE:
  121. ENCODE(uint32_t, be24, samples, dst, n, 8, 0x800000)
  122. break;
  123. case AV_CODEC_ID_PCM_S24DAUD:
  124. for (; n > 0; n--) {
  125. uint32_t tmp = ff_reverse[(*samples >> 8) & 0xff] +
  126. (ff_reverse[*samples & 0xff] << 8);
  127. tmp <<= 4; // sync flags would go here
  128. bytestream_put_be24(&dst, tmp);
  129. samples++;
  130. }
  131. break;
  132. case AV_CODEC_ID_PCM_U16LE:
  133. ENCODE(uint16_t, le16, samples, dst, n, 0, 0x8000)
  134. break;
  135. case AV_CODEC_ID_PCM_U16BE:
  136. ENCODE(uint16_t, be16, samples, dst, n, 0, 0x8000)
  137. break;
  138. case AV_CODEC_ID_PCM_S8:
  139. ENCODE(uint8_t, byte, samples, dst, n, 0, -128)
  140. break;
  141. case AV_CODEC_ID_PCM_S8_PLANAR:
  142. ENCODE_PLANAR(uint8_t, byte, dst, n, 0, -128)
  143. break;
  144. #if HAVE_BIGENDIAN
  145. case AV_CODEC_ID_PCM_F64LE:
  146. ENCODE(int64_t, le64, samples, dst, n, 0, 0)
  147. break;
  148. case AV_CODEC_ID_PCM_S32LE:
  149. case AV_CODEC_ID_PCM_F32LE:
  150. ENCODE(int32_t, le32, samples, dst, n, 0, 0)
  151. break;
  152. case AV_CODEC_ID_PCM_S32LE_PLANAR:
  153. ENCODE_PLANAR(int32_t, le32, dst, n, 0, 0)
  154. break;
  155. case AV_CODEC_ID_PCM_S16LE:
  156. ENCODE(int16_t, le16, samples, dst, n, 0, 0)
  157. break;
  158. case AV_CODEC_ID_PCM_S16LE_PLANAR:
  159. ENCODE_PLANAR(int16_t, le16, dst, n, 0, 0)
  160. break;
  161. case AV_CODEC_ID_PCM_F64BE:
  162. case AV_CODEC_ID_PCM_F32BE:
  163. case AV_CODEC_ID_PCM_S32BE:
  164. case AV_CODEC_ID_PCM_S16BE:
  165. #else
  166. case AV_CODEC_ID_PCM_F64BE:
  167. ENCODE(int64_t, be64, samples, dst, n, 0, 0)
  168. break;
  169. case AV_CODEC_ID_PCM_F32BE:
  170. case AV_CODEC_ID_PCM_S32BE:
  171. ENCODE(int32_t, be32, samples, dst, n, 0, 0)
  172. break;
  173. case AV_CODEC_ID_PCM_S16BE:
  174. ENCODE(int16_t, be16, samples, dst, n, 0, 0)
  175. break;
  176. case AV_CODEC_ID_PCM_S16BE_PLANAR:
  177. ENCODE_PLANAR(int16_t, be16, dst, n, 0, 0)
  178. break;
  179. case AV_CODEC_ID_PCM_F64LE:
  180. case AV_CODEC_ID_PCM_F32LE:
  181. case AV_CODEC_ID_PCM_S32LE:
  182. case AV_CODEC_ID_PCM_S16LE:
  183. #endif /* HAVE_BIGENDIAN */
  184. case AV_CODEC_ID_PCM_U8:
  185. memcpy(dst, samples, n * sample_size);
  186. break;
  187. #if HAVE_BIGENDIAN
  188. case AV_CODEC_ID_PCM_S16BE_PLANAR:
  189. #else
  190. case AV_CODEC_ID_PCM_S16LE_PLANAR:
  191. case AV_CODEC_ID_PCM_S32LE_PLANAR:
  192. #endif /* HAVE_BIGENDIAN */
  193. n /= avctx->channels;
  194. for (c = 0; c < avctx->channels; c++) {
  195. const uint8_t *src = frame->extended_data[c];
  196. bytestream_put_buffer(&dst, src, n * sample_size);
  197. }
  198. break;
  199. case AV_CODEC_ID_PCM_ALAW:
  200. for (; n > 0; n--) {
  201. v = *samples++;
  202. *dst++ = linear_to_alaw[(v + 32768) >> 2];
  203. }
  204. break;
  205. case AV_CODEC_ID_PCM_MULAW:
  206. for (; n > 0; n--) {
  207. v = *samples++;
  208. *dst++ = linear_to_ulaw[(v + 32768) >> 2];
  209. }
  210. break;
  211. default:
  212. return -1;
  213. }
  214. *got_packet_ptr = 1;
  215. return 0;
  216. }
  217. typedef struct PCMDecode {
  218. AVFrame frame;
  219. short table[256];
  220. } PCMDecode;
  221. static av_cold int pcm_decode_init(AVCodecContext *avctx)
  222. {
  223. PCMDecode *s = avctx->priv_data;
  224. int i;
  225. if (avctx->channels <= 0) {
  226. av_log(avctx, AV_LOG_ERROR, "PCM channels out of bounds\n");
  227. return AVERROR(EINVAL);
  228. }
  229. switch (avctx->codec_id) {
  230. case AV_CODEC_ID_PCM_ALAW:
  231. for (i = 0; i < 256; i++)
  232. s->table[i] = alaw2linear(i);
  233. break;
  234. case AV_CODEC_ID_PCM_MULAW:
  235. for (i = 0; i < 256; i++)
  236. s->table[i] = ulaw2linear(i);
  237. break;
  238. default:
  239. break;
  240. }
  241. avctx->sample_fmt = avctx->codec->sample_fmts[0];
  242. if (avctx->sample_fmt == AV_SAMPLE_FMT_S32)
  243. avctx->bits_per_raw_sample = av_get_bits_per_sample(avctx->codec_id);
  244. avcodec_get_frame_defaults(&s->frame);
  245. avctx->coded_frame = &s->frame;
  246. return 0;
  247. }
  248. /**
  249. * Read PCM samples macro
  250. * @param size Data size of native machine format
  251. * @param endian bytestream_get_xxx() endian suffix
  252. * @param src Source pointer (variable name)
  253. * @param dst Destination pointer (variable name)
  254. * @param n Total number of samples (variable name)
  255. * @param shift Bitshift (bits)
  256. * @param offset Sample value offset
  257. */
  258. #define DECODE(size, endian, src, dst, n, shift, offset) \
  259. for (; n > 0; n--) { \
  260. uint ## size ## _t v = bytestream_get_ ## endian(&src); \
  261. AV_WN ## size ## A(dst, (v - offset) << shift); \
  262. dst += size / 8; \
  263. }
  264. #define DECODE_PLANAR(size, endian, src, dst, n, shift, offset) \
  265. n /= avctx->channels; \
  266. for (c = 0; c < avctx->channels; c++) { \
  267. int i; \
  268. dst = s->frame.extended_data[c]; \
  269. for (i = n; i > 0; i--) { \
  270. uint ## size ## _t v = bytestream_get_ ## endian(&src); \
  271. AV_WN ## size ## A(dst, (v - offset) << shift); \
  272. dst += size / 8; \
  273. } \
  274. }
  275. static int pcm_decode_frame(AVCodecContext *avctx, void *data,
  276. int *got_frame_ptr, AVPacket *avpkt)
  277. {
  278. const uint8_t *src = avpkt->data;
  279. int buf_size = avpkt->size;
  280. PCMDecode *s = avctx->priv_data;
  281. int sample_size, c, n, ret, samples_per_block;
  282. uint8_t *samples;
  283. int32_t *dst_int32_t;
  284. sample_size = av_get_bits_per_sample(avctx->codec_id) / 8;
  285. /* av_get_bits_per_sample returns 0 for AV_CODEC_ID_PCM_DVD */
  286. samples_per_block = 1;
  287. if (AV_CODEC_ID_PCM_DVD == avctx->codec_id) {
  288. if (avctx->bits_per_coded_sample != 20 &&
  289. avctx->bits_per_coded_sample != 24) {
  290. av_log(avctx, AV_LOG_ERROR,
  291. "PCM DVD unsupported sample depth %i\n",
  292. avctx->bits_per_coded_sample);
  293. return AVERROR(EINVAL);
  294. }
  295. /* 2 samples are interleaved per block in PCM_DVD */
  296. samples_per_block = 2;
  297. sample_size = avctx->bits_per_coded_sample * 2 / 8;
  298. } else if (avctx->codec_id == AV_CODEC_ID_PCM_LXF) {
  299. /* we process 40-bit blocks per channel for LXF */
  300. samples_per_block = 2;
  301. sample_size = 5;
  302. }
  303. if (sample_size == 0) {
  304. av_log(avctx, AV_LOG_ERROR, "Invalid sample_size\n");
  305. return AVERROR(EINVAL);
  306. }
  307. if (avctx->channels == 0) {
  308. av_log(avctx, AV_LOG_ERROR, "Invalid number of channels\n");
  309. return AVERROR(EINVAL);
  310. }
  311. if (avctx->codec_id != avctx->codec->id) {
  312. av_log(avctx, AV_LOG_ERROR, "codec ids mismatch\n");
  313. return AVERROR(EINVAL);
  314. }
  315. n = avctx->channels * sample_size;
  316. if (n && buf_size % n) {
  317. if (buf_size < n) {
  318. av_log(avctx, AV_LOG_ERROR,
  319. "Invalid PCM packet, data has size %d but at least a size of %d was expected\n",
  320. buf_size, n);
  321. return AVERROR_INVALIDDATA;
  322. } else
  323. buf_size -= buf_size % n;
  324. }
  325. n = buf_size / sample_size;
  326. /* get output buffer */
  327. s->frame.nb_samples = n * samples_per_block / avctx->channels;
  328. if ((ret = ff_get_buffer(avctx, &s->frame)) < 0) {
  329. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  330. return ret;
  331. }
  332. samples = s->frame.data[0];
  333. switch (avctx->codec_id) {
  334. case AV_CODEC_ID_PCM_U32LE:
  335. DECODE(32, le32, src, samples, n, 0, 0x80000000)
  336. break;
  337. case AV_CODEC_ID_PCM_U32BE:
  338. DECODE(32, be32, src, samples, n, 0, 0x80000000)
  339. break;
  340. case AV_CODEC_ID_PCM_S24LE:
  341. DECODE(32, le24, src, samples, n, 8, 0)
  342. break;
  343. case AV_CODEC_ID_PCM_S24LE_PLANAR:
  344. DECODE_PLANAR(32, le24, src, samples, n, 8, 0);
  345. break;
  346. case AV_CODEC_ID_PCM_S24BE:
  347. DECODE(32, be24, src, samples, n, 8, 0)
  348. break;
  349. case AV_CODEC_ID_PCM_U24LE:
  350. DECODE(32, le24, src, samples, n, 8, 0x800000)
  351. break;
  352. case AV_CODEC_ID_PCM_U24BE:
  353. DECODE(32, be24, src, samples, n, 8, 0x800000)
  354. break;
  355. case AV_CODEC_ID_PCM_S24DAUD:
  356. for (; n > 0; n--) {
  357. uint32_t v = bytestream_get_be24(&src);
  358. v >>= 4; // sync flags are here
  359. AV_WN16A(samples, ff_reverse[(v >> 8) & 0xff] +
  360. (ff_reverse[v & 0xff] << 8));
  361. samples += 2;
  362. }
  363. break;
  364. case AV_CODEC_ID_PCM_U16LE:
  365. DECODE(16, le16, src, samples, n, 0, 0x8000)
  366. break;
  367. case AV_CODEC_ID_PCM_U16BE:
  368. DECODE(16, be16, src, samples, n, 0, 0x8000)
  369. break;
  370. case AV_CODEC_ID_PCM_S8:
  371. for (; n > 0; n--)
  372. *samples++ = *src++ + 128;
  373. break;
  374. case AV_CODEC_ID_PCM_S8_PLANAR:
  375. n /= avctx->channels;
  376. for (c = 0; c < avctx->channels; c++) {
  377. int i;
  378. samples = s->frame.extended_data[c];
  379. for (i = n; i > 0; i--)
  380. *samples++ = *src++ + 128;
  381. }
  382. break;
  383. #if HAVE_BIGENDIAN
  384. case AV_CODEC_ID_PCM_F64LE:
  385. DECODE(64, le64, src, samples, n, 0, 0)
  386. break;
  387. case AV_CODEC_ID_PCM_S32LE:
  388. case AV_CODEC_ID_PCM_F32LE:
  389. DECODE(32, le32, src, samples, n, 0, 0)
  390. break;
  391. case AV_CODEC_ID_PCM_S32LE_PLANAR:
  392. DECODE_PLANAR(32, le32, src, samples, n, 0, 0);
  393. break;
  394. case AV_CODEC_ID_PCM_S16LE:
  395. DECODE(16, le16, src, samples, n, 0, 0)
  396. break;
  397. case AV_CODEC_ID_PCM_S16LE_PLANAR:
  398. DECODE_PLANAR(16, le16, src, samples, n, 0, 0);
  399. break;
  400. case AV_CODEC_ID_PCM_F64BE:
  401. case AV_CODEC_ID_PCM_F32BE:
  402. case AV_CODEC_ID_PCM_S32BE:
  403. case AV_CODEC_ID_PCM_S16BE:
  404. #else
  405. case AV_CODEC_ID_PCM_F64BE:
  406. DECODE(64, be64, src, samples, n, 0, 0)
  407. break;
  408. case AV_CODEC_ID_PCM_F32BE:
  409. case AV_CODEC_ID_PCM_S32BE:
  410. DECODE(32, be32, src, samples, n, 0, 0)
  411. break;
  412. case AV_CODEC_ID_PCM_S16BE:
  413. DECODE(16, be16, src, samples, n, 0, 0)
  414. break;
  415. case AV_CODEC_ID_PCM_S16BE_PLANAR:
  416. DECODE_PLANAR(16, be16, src, samples, n, 0, 0);
  417. break;
  418. case AV_CODEC_ID_PCM_F64LE:
  419. case AV_CODEC_ID_PCM_F32LE:
  420. case AV_CODEC_ID_PCM_S32LE:
  421. case AV_CODEC_ID_PCM_S16LE:
  422. #endif /* HAVE_BIGENDIAN */
  423. case AV_CODEC_ID_PCM_U8:
  424. memcpy(samples, src, n * sample_size);
  425. break;
  426. #if HAVE_BIGENDIAN
  427. case AV_CODEC_ID_PCM_S16BE_PLANAR:
  428. #else
  429. case AV_CODEC_ID_PCM_S16LE_PLANAR:
  430. case AV_CODEC_ID_PCM_S32LE_PLANAR:
  431. #endif /* HAVE_BIGENDIAN */
  432. n /= avctx->channels;
  433. for (c = 0; c < avctx->channels; c++) {
  434. samples = s->frame.extended_data[c];
  435. bytestream_get_buffer(&src, samples, n * sample_size);
  436. }
  437. break;
  438. case AV_CODEC_ID_PCM_ZORK:
  439. for (; n > 0; n--) {
  440. int v = *src++;
  441. if (v < 128)
  442. v = 128 - v;
  443. *samples++ = v;
  444. }
  445. break;
  446. case AV_CODEC_ID_PCM_ALAW:
  447. case AV_CODEC_ID_PCM_MULAW:
  448. for (; n > 0; n--) {
  449. AV_WN16A(samples, s->table[*src++]);
  450. samples += 2;
  451. }
  452. break;
  453. case AV_CODEC_ID_PCM_DVD:
  454. {
  455. const uint8_t *src8;
  456. dst_int32_t = (int32_t *)s->frame.data[0];
  457. n /= avctx->channels;
  458. switch (avctx->bits_per_coded_sample) {
  459. case 20:
  460. while (n--) {
  461. c = avctx->channels;
  462. src8 = src + 4 * c;
  463. while (c--) {
  464. *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8 & 0xf0) << 8);
  465. *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8++ & 0x0f) << 12);
  466. }
  467. src = src8;
  468. }
  469. break;
  470. case 24:
  471. while (n--) {
  472. c = avctx->channels;
  473. src8 = src + 4 * c;
  474. while (c--) {
  475. *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8++) << 8);
  476. *dst_int32_t++ = (bytestream_get_be16(&src) << 16) + ((*src8++) << 8);
  477. }
  478. src = src8;
  479. }
  480. break;
  481. }
  482. break;
  483. }
  484. case AV_CODEC_ID_PCM_LXF:
  485. {
  486. int i;
  487. n /= avctx->channels;
  488. for (c = 0; c < avctx->channels; c++) {
  489. dst_int32_t = (int32_t *)s->frame.extended_data[c];
  490. for (i = 0; i < n; i++) {
  491. // extract low 20 bits and expand to 32 bits
  492. *dst_int32_t++ = (src[2] << 28) |
  493. (src[1] << 20) |
  494. (src[0] << 12) |
  495. ((src[2] & 0x0F) << 8) |
  496. src[1];
  497. // extract high 20 bits and expand to 32 bits
  498. *dst_int32_t++ = (src[4] << 24) |
  499. (src[3] << 16) |
  500. ((src[2] & 0xF0) << 8) |
  501. (src[4] << 4) |
  502. (src[3] >> 4);
  503. src += 5;
  504. }
  505. }
  506. break;
  507. }
  508. default:
  509. return -1;
  510. }
  511. *got_frame_ptr = 1;
  512. *(AVFrame *)data = s->frame;
  513. return buf_size;
  514. }
  515. #define PCM_ENCODER_0(id_, sample_fmt_, name_, long_name_)
  516. #define PCM_ENCODER_1(id_, sample_fmt_, name_, long_name_) \
  517. AVCodec ff_ ## name_ ## _encoder = { \
  518. .name = #name_, \
  519. .type = AVMEDIA_TYPE_AUDIO, \
  520. .id = AV_CODEC_ID_ ## id_, \
  521. .init = pcm_encode_init, \
  522. .encode2 = pcm_encode_frame, \
  523. .close = pcm_encode_close, \
  524. .capabilities = CODEC_CAP_VARIABLE_FRAME_SIZE, \
  525. .sample_fmts = (const enum AVSampleFormat[]){ sample_fmt_, \
  526. AV_SAMPLE_FMT_NONE }, \
  527. .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
  528. }
  529. #define PCM_ENCODER_2(cf, id, sample_fmt, name, long_name) \
  530. PCM_ENCODER_ ## cf(id, sample_fmt, name, long_name)
  531. #define PCM_ENCODER_3(cf, id, sample_fmt, name, long_name) \
  532. PCM_ENCODER_2(cf, id, sample_fmt, name, long_name)
  533. #define PCM_ENCODER(id, sample_fmt, name, long_name) \
  534. PCM_ENCODER_3(CONFIG_ ## id ## _ENCODER, id, sample_fmt, name, long_name)
  535. #define PCM_DECODER_0(id, sample_fmt, name, long_name)
  536. #define PCM_DECODER_1(id_, sample_fmt_, name_, long_name_) \
  537. AVCodec ff_ ## name_ ## _decoder = { \
  538. .name = #name_, \
  539. .type = AVMEDIA_TYPE_AUDIO, \
  540. .id = AV_CODEC_ID_ ## id_, \
  541. .priv_data_size = sizeof(PCMDecode), \
  542. .init = pcm_decode_init, \
  543. .decode = pcm_decode_frame, \
  544. .capabilities = CODEC_CAP_DR1, \
  545. .sample_fmts = (const enum AVSampleFormat[]){ sample_fmt_, \
  546. AV_SAMPLE_FMT_NONE }, \
  547. .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
  548. }
  549. #define PCM_DECODER_2(cf, id, sample_fmt, name, long_name) \
  550. PCM_DECODER_ ## cf(id, sample_fmt, name, long_name)
  551. #define PCM_DECODER_3(cf, id, sample_fmt, name, long_name) \
  552. PCM_DECODER_2(cf, id, sample_fmt, name, long_name)
  553. #define PCM_DECODER(id, sample_fmt, name, long_name) \
  554. PCM_DECODER_3(CONFIG_ ## id ## _DECODER, id, sample_fmt, name, long_name)
  555. #define PCM_CODEC(id, sample_fmt_, name, long_name_) \
  556. PCM_ENCODER(id, sample_fmt_, name, long_name_); \
  557. PCM_DECODER(id, sample_fmt_, name, long_name_)
  558. /* Note: Do not forget to add new entries to the Makefile as well. */
  559. PCM_CODEC (PCM_ALAW, AV_SAMPLE_FMT_S16, pcm_alaw, "PCM A-law / G.711 A-law");
  560. PCM_DECODER(PCM_DVD, AV_SAMPLE_FMT_S32, pcm_dvd, "PCM signed 20|24-bit big-endian");
  561. PCM_CODEC (PCM_F32BE, AV_SAMPLE_FMT_FLT, pcm_f32be, "PCM 32-bit floating point big-endian");
  562. PCM_CODEC (PCM_F32LE, AV_SAMPLE_FMT_FLT, pcm_f32le, "PCM 32-bit floating point little-endian");
  563. PCM_CODEC (PCM_F64BE, AV_SAMPLE_FMT_DBL, pcm_f64be, "PCM 64-bit floating point big-endian");
  564. PCM_CODEC (PCM_F64LE, AV_SAMPLE_FMT_DBL, pcm_f64le, "PCM 64-bit floating point little-endian");
  565. PCM_DECODER(PCM_LXF, AV_SAMPLE_FMT_S32P,pcm_lxf, "PCM signed 20-bit little-endian planar");
  566. PCM_CODEC (PCM_MULAW, AV_SAMPLE_FMT_S16, pcm_mulaw, "PCM mu-law / G.711 mu-law");
  567. PCM_CODEC (PCM_S8, AV_SAMPLE_FMT_U8, pcm_s8, "PCM signed 8-bit");
  568. PCM_CODEC (PCM_S8_PLANAR, AV_SAMPLE_FMT_U8P, pcm_s8_planar, "PCM signed 8-bit planar");
  569. PCM_CODEC (PCM_S16BE, AV_SAMPLE_FMT_S16, pcm_s16be, "PCM signed 16-bit big-endian");
  570. PCM_CODEC (PCM_S16BE_PLANAR, AV_SAMPLE_FMT_S16P,pcm_s16be_planar, "PCM signed 16-bit big-endian planar");
  571. PCM_CODEC (PCM_S16LE, AV_SAMPLE_FMT_S16, pcm_s16le, "PCM signed 16-bit little-endian");
  572. PCM_CODEC (PCM_S16LE_PLANAR, AV_SAMPLE_FMT_S16P,pcm_s16le_planar, "PCM signed 16-bit little-endian planar");
  573. PCM_CODEC (PCM_S24BE, AV_SAMPLE_FMT_S32, pcm_s24be, "PCM signed 24-bit big-endian");
  574. PCM_CODEC (PCM_S24DAUD, AV_SAMPLE_FMT_S16, pcm_s24daud, "PCM D-Cinema audio signed 24-bit");
  575. PCM_CODEC (PCM_S24LE, AV_SAMPLE_FMT_S32, pcm_s24le, "PCM signed 24-bit little-endian");
  576. PCM_CODEC (PCM_S24LE_PLANAR, AV_SAMPLE_FMT_S32P,pcm_s24le_planar, "PCM signed 24-bit little-endian planar");
  577. PCM_CODEC (PCM_S32BE, AV_SAMPLE_FMT_S32, pcm_s32be, "PCM signed 32-bit big-endian");
  578. PCM_CODEC (PCM_S32LE, AV_SAMPLE_FMT_S32, pcm_s32le, "PCM signed 32-bit little-endian");
  579. PCM_CODEC (PCM_S32LE_PLANAR, AV_SAMPLE_FMT_S32P,pcm_s32le_planar, "PCM signed 32-bit little-endian planar");
  580. PCM_CODEC (PCM_U8, AV_SAMPLE_FMT_U8, pcm_u8, "PCM unsigned 8-bit");
  581. PCM_CODEC (PCM_U16BE, AV_SAMPLE_FMT_S16, pcm_u16be, "PCM unsigned 16-bit big-endian");
  582. PCM_CODEC (PCM_U16LE, AV_SAMPLE_FMT_S16, pcm_u16le, "PCM unsigned 16-bit little-endian");
  583. PCM_CODEC (PCM_U24BE, AV_SAMPLE_FMT_S32, pcm_u24be, "PCM unsigned 24-bit big-endian");
  584. PCM_CODEC (PCM_U24LE, AV_SAMPLE_FMT_S32, pcm_u24le, "PCM unsigned 24-bit little-endian");
  585. PCM_CODEC (PCM_U32BE, AV_SAMPLE_FMT_S32, pcm_u32be, "PCM unsigned 32-bit big-endian");
  586. PCM_CODEC (PCM_U32LE, AV_SAMPLE_FMT_S32, pcm_u32le, "PCM unsigned 32-bit little-endian");
  587. PCM_DECODER(PCM_ZORK, AV_SAMPLE_FMT_U8, pcm_zork, "PCM Zork");