frame.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. * libmad - MPEG audio decoder library
  3. * Copyright (C) 2000-2004 Underbit Technologies, Inc.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. *
  19. * $Id: frame.h,v 1.20 2004/01/23 09:41:32 rob Exp $
  20. */
  21. # ifndef LIBMAD_FRAME_H
  22. # define LIBMAD_FRAME_H
  23. # include "fixed.h"
  24. # include "stream.h"
  25. enum mad_layer {
  26. MAD_LAYER_I = 1, /* Layer I */
  27. MAD_LAYER_II = 2, /* Layer II */
  28. MAD_LAYER_III = 3 /* Layer III */
  29. };
  30. enum mad_mode {
  31. MAD_MODE_SINGLE_CHANNEL = 0, /* single channel */
  32. MAD_MODE_DUAL_CHANNEL = 1, /* dual channel */
  33. MAD_MODE_JOINT_STEREO = 2, /* joint (MS/intensity) stereo */
  34. MAD_MODE_STEREO = 3 /* normal LR stereo */
  35. };
  36. enum mad_emphasis {
  37. MAD_EMPHASIS_NONE = 0, /* no emphasis */
  38. MAD_EMPHASIS_50_15_US = 1, /* 50/15 microseconds emphasis */
  39. MAD_EMPHASIS_CCITT_J_17 = 3, /* CCITT J.17 emphasis */
  40. MAD_EMPHASIS_RESERVED = 2 /* unknown emphasis */
  41. };
  42. struct mad_header {
  43. enum mad_layer layer; /* audio layer (1, 2, or 3) */
  44. enum mad_mode mode; /* channel mode (see above) */
  45. int mode_extension; /* additional mode info */
  46. enum mad_emphasis emphasis; /* de-emphasis to use (see above) */
  47. unsigned long bitrate; /* stream bitrate (bps) */
  48. unsigned int samplerate; /* sampling frequency (Hz) */
  49. unsigned short crc_check; /* frame CRC accumulator */
  50. unsigned short crc_target; /* final target CRC checksum */
  51. int flags; /* flags (see below) */
  52. int private_bits; /* private bits (see below) */
  53. };
  54. struct mad_frame {
  55. struct mad_header header; /* MPEG audio header */
  56. int options; /* decoding options (from stream) */
  57. mad_fixed_t sbsample[2][36][32]; /* synthesis subband filter samples */
  58. mad_fixed_t (*overlap)[2][32][18]; /* Layer III block overlap data */
  59. };
  60. # define MAD_NCHANNELS(header) ((header)->mode ? 2 : 1)
  61. # define MAD_NSBSAMPLES(header) \
  62. ((header)->layer == MAD_LAYER_I ? 12 : \
  63. (((header)->layer == MAD_LAYER_III && \
  64. ((header)->flags & MAD_FLAG_LSF_EXT)) ? 18 : 36))
  65. enum {
  66. MAD_FLAG_NPRIVATE_III = 0x0007, /* number of Layer III private bits */
  67. MAD_FLAG_INCOMPLETE = 0x0008, /* header but not data is decoded */
  68. MAD_FLAG_PROTECTION = 0x0010, /* frame has CRC protection */
  69. MAD_FLAG_COPYRIGHT = 0x0020, /* frame is copyright */
  70. MAD_FLAG_ORIGINAL = 0x0040, /* frame is original (else copy) */
  71. MAD_FLAG_PADDING = 0x0080, /* frame has additional slot */
  72. MAD_FLAG_I_STEREO = 0x0100, /* uses intensity joint stereo */
  73. MAD_FLAG_MS_STEREO = 0x0200, /* uses middle/side joint stereo */
  74. MAD_FLAG_FREEFORMAT = 0x0400, /* uses free format bitrate */
  75. MAD_FLAG_LSF_EXT = 0x1000, /* lower sampling freq. extension */
  76. MAD_FLAG_MC_EXT = 0x2000, /* multichannel audio extension */
  77. MAD_FLAG_MPEG_2_5_EXT = 0x4000 /* MPEG 2.5 (unofficial) extension */
  78. };
  79. enum {
  80. MAD_PRIVATE_HEADER = 0x0100, /* header private bit */
  81. MAD_PRIVATE_III = 0x001f /* Layer III private bits (up to 5) */
  82. };
  83. void mad_header_init(struct mad_header *);
  84. # define mad_header_finish(header) /* nothing */
  85. int mad_header_decode(struct mad_header *, struct mad_stream *);
  86. void mad_frame_init(struct mad_frame *);
  87. void mad_frame_finish(struct mad_frame *);
  88. int mad_frame_decode(struct mad_frame *, struct mad_stream *);
  89. void mad_frame_mute(struct mad_frame *);
  90. # endif