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.

575 lines
17KB

  1. /*
  2. * FLAC (Free Lossless Audio Codec) decoder
  3. * Copyright (c) 2003 Alex Beregszaszi
  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. * FLAC (Free Lossless Audio Codec) decoder
  24. * @author Alex Beregszaszi
  25. * @see http://flac.sourceforge.net/
  26. *
  27. * This decoder can be used in 1 of 2 ways: Either raw FLAC data can be fed
  28. * through, starting from the initial 'fLaC' signature; or by passing the
  29. * 34-byte streaminfo structure through avctx->extradata[_size] followed
  30. * by data starting with the 0xFFF8 marker.
  31. */
  32. #include <limits.h>
  33. #include "libavutil/audioconvert.h"
  34. #include "libavutil/avassert.h"
  35. #include "libavutil/crc.h"
  36. #include "avcodec.h"
  37. #include "internal.h"
  38. #include "get_bits.h"
  39. #include "bytestream.h"
  40. #include "golomb.h"
  41. #include "flac.h"
  42. #include "flacdata.h"
  43. #include "flacdsp.h"
  44. typedef struct FLACContext {
  45. FLACSTREAMINFO
  46. AVCodecContext *avctx; ///< parent AVCodecContext
  47. AVFrame frame;
  48. GetBitContext gb; ///< GetBitContext initialized to start at the current frame
  49. int blocksize; ///< number of samples in the current frame
  50. int sample_shift; ///< shift required to make output samples 16-bit or 32-bit
  51. int ch_mode; ///< channel decorrelation type in the current frame
  52. int got_streaminfo; ///< indicates if the STREAMINFO has been read
  53. int32_t *decoded[FLAC_MAX_CHANNELS]; ///< decoded samples
  54. FLACDSPContext dsp;
  55. } FLACContext;
  56. static const int64_t flac_channel_layouts[6] = {
  57. AV_CH_LAYOUT_MONO,
  58. AV_CH_LAYOUT_STEREO,
  59. AV_CH_LAYOUT_SURROUND,
  60. AV_CH_LAYOUT_QUAD,
  61. AV_CH_LAYOUT_5POINT0,
  62. AV_CH_LAYOUT_5POINT1
  63. };
  64. static void allocate_buffers(FLACContext *s);
  65. static void flac_set_bps(FLACContext *s)
  66. {
  67. enum AVSampleFormat req = s->avctx->request_sample_fmt;
  68. int need32 = s->bps > 16;
  69. int want32 = av_get_bytes_per_sample(req) > 2;
  70. int planar = av_sample_fmt_is_planar(req);
  71. if (need32 || want32) {
  72. if (planar)
  73. s->avctx->sample_fmt = AV_SAMPLE_FMT_S32P;
  74. else
  75. s->avctx->sample_fmt = AV_SAMPLE_FMT_S32;
  76. s->sample_shift = 32 - s->bps;
  77. } else {
  78. if (planar)
  79. s->avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
  80. else
  81. s->avctx->sample_fmt = AV_SAMPLE_FMT_S16;
  82. s->sample_shift = 16 - s->bps;
  83. }
  84. }
  85. static av_cold int flac_decode_init(AVCodecContext *avctx)
  86. {
  87. enum FLACExtradataFormat format;
  88. uint8_t *streaminfo;
  89. FLACContext *s = avctx->priv_data;
  90. s->avctx = avctx;
  91. /* for now, the raw FLAC header is allowed to be passed to the decoder as
  92. frame data instead of extradata. */
  93. if (!avctx->extradata)
  94. return 0;
  95. if (!avpriv_flac_is_extradata_valid(avctx, &format, &streaminfo))
  96. return -1;
  97. /* initialize based on the demuxer-supplied streamdata header */
  98. avpriv_flac_parse_streaminfo(avctx, (FLACStreaminfo *)s, streaminfo);
  99. allocate_buffers(s);
  100. flac_set_bps(s);
  101. ff_flacdsp_init(&s->dsp, avctx->sample_fmt, s->bps);
  102. s->got_streaminfo = 1;
  103. avcodec_get_frame_defaults(&s->frame);
  104. avctx->coded_frame = &s->frame;
  105. if (avctx->channels <= FF_ARRAY_ELEMS(flac_channel_layouts))
  106. avctx->channel_layout = flac_channel_layouts[avctx->channels - 1];
  107. return 0;
  108. }
  109. static void dump_headers(AVCodecContext *avctx, FLACStreaminfo *s)
  110. {
  111. av_log(avctx, AV_LOG_DEBUG, " Max Blocksize: %d\n", s->max_blocksize);
  112. av_log(avctx, AV_LOG_DEBUG, " Max Framesize: %d\n", s->max_framesize);
  113. av_log(avctx, AV_LOG_DEBUG, " Samplerate: %d\n", s->samplerate);
  114. av_log(avctx, AV_LOG_DEBUG, " Channels: %d\n", s->channels);
  115. av_log(avctx, AV_LOG_DEBUG, " Bits: %d\n", s->bps);
  116. }
  117. static void allocate_buffers(FLACContext *s)
  118. {
  119. int i;
  120. av_assert0(s->max_blocksize);
  121. for (i = 0; i < s->channels; i++) {
  122. s->decoded[i] = av_malloc(sizeof(int32_t)*s->max_blocksize);
  123. }
  124. }
  125. /**
  126. * Parse the STREAMINFO from an inline header.
  127. * @param s the flac decoding context
  128. * @param buf input buffer, starting with the "fLaC" marker
  129. * @param buf_size buffer size
  130. * @return non-zero if metadata is invalid
  131. */
  132. static int parse_streaminfo(FLACContext *s, const uint8_t *buf, int buf_size)
  133. {
  134. int metadata_type, metadata_size;
  135. if (buf_size < FLAC_STREAMINFO_SIZE+8) {
  136. /* need more data */
  137. return 0;
  138. }
  139. avpriv_flac_parse_block_header(&buf[4], NULL, &metadata_type, &metadata_size);
  140. if (metadata_type != FLAC_METADATA_TYPE_STREAMINFO ||
  141. metadata_size != FLAC_STREAMINFO_SIZE) {
  142. return AVERROR_INVALIDDATA;
  143. }
  144. avpriv_flac_parse_streaminfo(s->avctx, (FLACStreaminfo *)s, &buf[8]);
  145. allocate_buffers(s);
  146. flac_set_bps(s);
  147. ff_flacdsp_init(&s->dsp, s->avctx->sample_fmt, s->bps);
  148. s->got_streaminfo = 1;
  149. return 0;
  150. }
  151. /**
  152. * Determine the size of an inline header.
  153. * @param buf input buffer, starting with the "fLaC" marker
  154. * @param buf_size buffer size
  155. * @return number of bytes in the header, or 0 if more data is needed
  156. */
  157. static int get_metadata_size(const uint8_t *buf, int buf_size)
  158. {
  159. int metadata_last, metadata_size;
  160. const uint8_t *buf_end = buf + buf_size;
  161. buf += 4;
  162. do {
  163. if (buf_end - buf < 4)
  164. return 0;
  165. avpriv_flac_parse_block_header(buf, &metadata_last, NULL, &metadata_size);
  166. buf += 4;
  167. if (buf_end - buf < metadata_size) {
  168. /* need more data in order to read the complete header */
  169. return 0;
  170. }
  171. buf += metadata_size;
  172. } while (!metadata_last);
  173. return buf_size - (buf_end - buf);
  174. }
  175. static int decode_residuals(FLACContext *s, int channel, int pred_order)
  176. {
  177. int i, tmp, partition, method_type, rice_order;
  178. int sample = 0, samples;
  179. method_type = get_bits(&s->gb, 2);
  180. if (method_type > 1) {
  181. av_log(s->avctx, AV_LOG_ERROR, "illegal residual coding method %d\n",
  182. method_type);
  183. return -1;
  184. }
  185. rice_order = get_bits(&s->gb, 4);
  186. samples= s->blocksize >> rice_order;
  187. if (pred_order > samples) {
  188. av_log(s->avctx, AV_LOG_ERROR, "invalid predictor order: %i > %i\n",
  189. pred_order, samples);
  190. return -1;
  191. }
  192. sample=
  193. i= pred_order;
  194. for (partition = 0; partition < (1 << rice_order); partition++) {
  195. tmp = get_bits(&s->gb, method_type == 0 ? 4 : 5);
  196. if (tmp == (method_type == 0 ? 15 : 31)) {
  197. tmp = get_bits(&s->gb, 5);
  198. for (; i < samples; i++, sample++)
  199. s->decoded[channel][sample] = get_sbits_long(&s->gb, tmp);
  200. } else {
  201. for (; i < samples; i++, sample++) {
  202. s->decoded[channel][sample] = get_sr_golomb_flac(&s->gb, tmp, INT_MAX, 0);
  203. }
  204. }
  205. i= 0;
  206. }
  207. return 0;
  208. }
  209. static int decode_subframe_fixed(FLACContext *s, int channel, int pred_order,
  210. int bps)
  211. {
  212. const int blocksize = s->blocksize;
  213. int32_t *decoded = s->decoded[channel];
  214. int a, b, c, d, i;
  215. /* warm up samples */
  216. for (i = 0; i < pred_order; i++) {
  217. decoded[i] = get_sbits_long(&s->gb, bps);
  218. }
  219. if (decode_residuals(s, channel, pred_order) < 0)
  220. return -1;
  221. if (pred_order > 0)
  222. a = decoded[pred_order-1];
  223. if (pred_order > 1)
  224. b = a - decoded[pred_order-2];
  225. if (pred_order > 2)
  226. c = b - decoded[pred_order-2] + decoded[pred_order-3];
  227. if (pred_order > 3)
  228. d = c - decoded[pred_order-2] + 2*decoded[pred_order-3] - decoded[pred_order-4];
  229. switch (pred_order) {
  230. case 0:
  231. break;
  232. case 1:
  233. for (i = pred_order; i < blocksize; i++)
  234. decoded[i] = a += decoded[i];
  235. break;
  236. case 2:
  237. for (i = pred_order; i < blocksize; i++)
  238. decoded[i] = a += b += decoded[i];
  239. break;
  240. case 3:
  241. for (i = pred_order; i < blocksize; i++)
  242. decoded[i] = a += b += c += decoded[i];
  243. break;
  244. case 4:
  245. for (i = pred_order; i < blocksize; i++)
  246. decoded[i] = a += b += c += d += decoded[i];
  247. break;
  248. default:
  249. av_log(s->avctx, AV_LOG_ERROR, "illegal pred order %d\n", pred_order);
  250. return -1;
  251. }
  252. return 0;
  253. }
  254. static int decode_subframe_lpc(FLACContext *s, int channel, int pred_order,
  255. int bps)
  256. {
  257. int i;
  258. int coeff_prec, qlevel;
  259. int coeffs[32];
  260. int32_t *decoded = s->decoded[channel];
  261. /* warm up samples */
  262. for (i = 0; i < pred_order; i++) {
  263. decoded[i] = get_sbits_long(&s->gb, bps);
  264. }
  265. coeff_prec = get_bits(&s->gb, 4) + 1;
  266. if (coeff_prec == 16) {
  267. av_log(s->avctx, AV_LOG_ERROR, "invalid coeff precision\n");
  268. return -1;
  269. }
  270. qlevel = get_sbits(&s->gb, 5);
  271. if (qlevel < 0) {
  272. av_log(s->avctx, AV_LOG_ERROR, "qlevel %d not supported, maybe buggy stream\n",
  273. qlevel);
  274. return -1;
  275. }
  276. for (i = 0; i < pred_order; i++) {
  277. coeffs[pred_order - i - 1] = get_sbits(&s->gb, coeff_prec);
  278. }
  279. if (decode_residuals(s, channel, pred_order) < 0)
  280. return -1;
  281. s->dsp.lpc(decoded, coeffs, pred_order, qlevel, s->blocksize);
  282. return 0;
  283. }
  284. static inline int decode_subframe(FLACContext *s, int channel)
  285. {
  286. int type, wasted = 0;
  287. int bps = s->bps;
  288. int i, tmp;
  289. if (channel == 0) {
  290. if (s->ch_mode == FLAC_CHMODE_RIGHT_SIDE)
  291. bps++;
  292. } else {
  293. if (s->ch_mode == FLAC_CHMODE_LEFT_SIDE || s->ch_mode == FLAC_CHMODE_MID_SIDE)
  294. bps++;
  295. }
  296. if (get_bits1(&s->gb)) {
  297. av_log(s->avctx, AV_LOG_ERROR, "invalid subframe padding\n");
  298. return -1;
  299. }
  300. type = get_bits(&s->gb, 6);
  301. if (get_bits1(&s->gb)) {
  302. int left = get_bits_left(&s->gb);
  303. wasted = 1;
  304. if ( left < 0 ||
  305. (left < bps && !show_bits_long(&s->gb, left)) ||
  306. !show_bits_long(&s->gb, bps)) {
  307. av_log(s->avctx, AV_LOG_ERROR,
  308. "Invalid number of wasted bits > available bits (%d) - left=%d\n",
  309. bps, left);
  310. return AVERROR_INVALIDDATA;
  311. }
  312. while (!get_bits1(&s->gb))
  313. wasted++;
  314. bps -= wasted;
  315. }
  316. if (bps > 32) {
  317. av_log_missing_feature(s->avctx, "decorrelated bit depth > 32", 0);
  318. return -1;
  319. }
  320. //FIXME use av_log2 for types
  321. if (type == 0) {
  322. tmp = get_sbits_long(&s->gb, bps);
  323. for (i = 0; i < s->blocksize; i++)
  324. s->decoded[channel][i] = tmp;
  325. } else if (type == 1) {
  326. for (i = 0; i < s->blocksize; i++)
  327. s->decoded[channel][i] = get_sbits_long(&s->gb, bps);
  328. } else if ((type >= 8) && (type <= 12)) {
  329. if (decode_subframe_fixed(s, channel, type & ~0x8, bps) < 0)
  330. return -1;
  331. } else if (type >= 32) {
  332. if (decode_subframe_lpc(s, channel, (type & ~0x20)+1, bps) < 0)
  333. return -1;
  334. } else {
  335. av_log(s->avctx, AV_LOG_ERROR, "invalid coding type\n");
  336. return -1;
  337. }
  338. if (wasted) {
  339. int i;
  340. for (i = 0; i < s->blocksize; i++)
  341. s->decoded[channel][i] <<= wasted;
  342. }
  343. return 0;
  344. }
  345. static int decode_frame(FLACContext *s)
  346. {
  347. int i;
  348. GetBitContext *gb = &s->gb;
  349. FLACFrameInfo fi;
  350. if (ff_flac_decode_frame_header(s->avctx, gb, &fi, 0)) {
  351. av_log(s->avctx, AV_LOG_ERROR, "invalid frame header\n");
  352. return -1;
  353. }
  354. if (s->channels && fi.channels != s->channels) {
  355. av_log(s->avctx, AV_LOG_ERROR, "switching channel layout mid-stream "
  356. "is not supported\n");
  357. return -1;
  358. }
  359. s->channels = s->avctx->channels = fi.channels;
  360. s->ch_mode = fi.ch_mode;
  361. if (!s->bps && !fi.bps) {
  362. av_log(s->avctx, AV_LOG_ERROR, "bps not found in STREAMINFO or frame header\n");
  363. return -1;
  364. }
  365. if (!fi.bps) {
  366. fi.bps = s->bps;
  367. } else if (s->bps && fi.bps != s->bps) {
  368. av_log(s->avctx, AV_LOG_ERROR, "switching bps mid-stream is not "
  369. "supported\n");
  370. return -1;
  371. }
  372. if (!s->bps) {
  373. s->bps = s->avctx->bits_per_raw_sample = fi.bps;
  374. flac_set_bps(s);
  375. }
  376. if (!s->max_blocksize)
  377. s->max_blocksize = FLAC_MAX_BLOCKSIZE;
  378. if (fi.blocksize > s->max_blocksize) {
  379. av_log(s->avctx, AV_LOG_ERROR, "blocksize %d > %d\n", fi.blocksize,
  380. s->max_blocksize);
  381. return -1;
  382. }
  383. s->blocksize = fi.blocksize;
  384. if (!s->samplerate && !fi.samplerate) {
  385. av_log(s->avctx, AV_LOG_ERROR, "sample rate not found in STREAMINFO"
  386. " or frame header\n");
  387. return -1;
  388. }
  389. if (fi.samplerate == 0) {
  390. fi.samplerate = s->samplerate;
  391. } else if (s->samplerate && fi.samplerate != s->samplerate) {
  392. av_log(s->avctx, AV_LOG_WARNING, "sample rate changed from %d to %d\n",
  393. s->samplerate, fi.samplerate);
  394. }
  395. s->samplerate = s->avctx->sample_rate = fi.samplerate;
  396. if (!s->got_streaminfo) {
  397. allocate_buffers(s);
  398. ff_flacdsp_init(&s->dsp, s->avctx->sample_fmt, s->bps);
  399. s->got_streaminfo = 1;
  400. dump_headers(s->avctx, (FLACStreaminfo *)s);
  401. }
  402. // dump_headers(s->avctx, (FLACStreaminfo *)s);
  403. /* subframes */
  404. for (i = 0; i < s->channels; i++) {
  405. if (decode_subframe(s, i) < 0)
  406. return -1;
  407. }
  408. align_get_bits(gb);
  409. /* frame footer */
  410. skip_bits(gb, 16); /* data crc */
  411. return 0;
  412. }
  413. static int flac_decode_frame(AVCodecContext *avctx, void *data,
  414. int *got_frame_ptr, AVPacket *avpkt)
  415. {
  416. const uint8_t *buf = avpkt->data;
  417. int buf_size = avpkt->size;
  418. FLACContext *s = avctx->priv_data;
  419. int bytes_read = 0;
  420. int ret;
  421. *got_frame_ptr = 0;
  422. if (s->max_framesize == 0) {
  423. s->max_framesize =
  424. ff_flac_get_max_frame_size(s->max_blocksize ? s->max_blocksize : FLAC_MAX_BLOCKSIZE,
  425. FLAC_MAX_CHANNELS, 32);
  426. }
  427. /* check that there is at least the smallest decodable amount of data.
  428. this amount corresponds to the smallest valid FLAC frame possible.
  429. FF F8 69 02 00 00 9A 00 00 34 46 */
  430. if (buf_size < FLAC_MIN_FRAME_SIZE)
  431. return buf_size;
  432. /* check for inline header */
  433. if (AV_RB32(buf) == MKBETAG('f','L','a','C')) {
  434. if (!s->got_streaminfo && parse_streaminfo(s, buf, buf_size)) {
  435. av_log(s->avctx, AV_LOG_ERROR, "invalid header\n");
  436. return -1;
  437. }
  438. return get_metadata_size(buf, buf_size);
  439. }
  440. /* decode frame */
  441. init_get_bits(&s->gb, buf, buf_size*8);
  442. if (decode_frame(s) < 0) {
  443. av_log(s->avctx, AV_LOG_ERROR, "decode_frame() failed\n");
  444. return -1;
  445. }
  446. bytes_read = (get_bits_count(&s->gb)+7)/8;
  447. /* get output buffer */
  448. s->frame.nb_samples = s->blocksize;
  449. if ((ret = avctx->get_buffer(avctx, &s->frame)) < 0) {
  450. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  451. return ret;
  452. }
  453. s->dsp.decorrelate[s->ch_mode](s->frame.data, s->decoded, s->channels,
  454. s->blocksize, s->sample_shift);
  455. if (bytes_read > buf_size) {
  456. av_log(s->avctx, AV_LOG_ERROR, "overread: %d\n", bytes_read - buf_size);
  457. return -1;
  458. }
  459. if (bytes_read < buf_size) {
  460. av_log(s->avctx, AV_LOG_DEBUG, "underread: %d orig size: %d\n",
  461. buf_size - bytes_read, buf_size);
  462. }
  463. *got_frame_ptr = 1;
  464. *(AVFrame *)data = s->frame;
  465. return bytes_read;
  466. }
  467. static av_cold int flac_decode_close(AVCodecContext *avctx)
  468. {
  469. FLACContext *s = avctx->priv_data;
  470. int i;
  471. for (i = 0; i < s->channels; i++) {
  472. av_freep(&s->decoded[i]);
  473. }
  474. return 0;
  475. }
  476. AVCodec ff_flac_decoder = {
  477. .name = "flac",
  478. .type = AVMEDIA_TYPE_AUDIO,
  479. .id = AV_CODEC_ID_FLAC,
  480. .priv_data_size = sizeof(FLACContext),
  481. .init = flac_decode_init,
  482. .close = flac_decode_close,
  483. .decode = flac_decode_frame,
  484. .capabilities = CODEC_CAP_DR1,
  485. .long_name = NULL_IF_CONFIG_SMALL("FLAC (Free Lossless Audio Codec)"),
  486. .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S16,
  487. AV_SAMPLE_FMT_S16P,
  488. AV_SAMPLE_FMT_S32,
  489. AV_SAMPLE_FMT_S32P,
  490. -1 },
  491. };