VbrTag.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * Xing VBR tagging for LAME.
  3.  *
  4.  * Copyright (c) 1999 A.L. Faber
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Library General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Library General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Library General Public
  17.  * License along with this library; if not, write to the
  18.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19.  * Boston, MA 02111-1307, USA.
  20.  */
  21. #ifndef VRBTAG_H_INCLUDED
  22. #define VRBTAG_H_INCLUDED
  23. /* -----------------------------------------------------------
  24.  * A Vbr header may be present in the ancillary
  25.  * data field of the first frame of an mp3 bitstream
  26.  * The Vbr header (optionally) contains
  27.  *      frames      total number of audio frames in the bitstream
  28.  *      bytes       total number of bytes in the bitstream
  29.  *      toc         table of contents
  30.  * toc (table of contents) gives seek points
  31.  * for random access
  32.  * the ith entry determines the seek point for
  33.  * i-percent duration
  34.  * seek point in bytes = (toc[i]/256.0) * total_bitstream_bytes
  35.  * e.g. half duration seek point = (toc[50]/256.0) * total_bitstream_bytes
  36.  */
  37. #include "l3bitstream.h"
  38. #define FRAMES_FLAG     0x0001
  39. #define BYTES_FLAG      0x0002
  40. #define TOC_FLAG        0x0004
  41. #define VBR_SCALE_FLAG  0x0008
  42. #define NUMTOCENTRIES 100
  43. #define FRAMES_AND_BYTES (FRAMES_FLAG | BYTES_FLAG)
  44. /*structure to receive extracted header */
  45. /* toc may be NULL*/
  46. typedef struct
  47. {
  48.   int h_id; /* from MPEG header, 0=MPEG2, 1=MPEG1 */
  49.   int samprate; /* determined from MPEG header */
  50.   int flags; /* from Vbr header data */
  51.   int frames; /* total bit stream frames from Vbr header data */
  52.   int bytes; /* total bit stream bytes from Vbr header data*/
  53.   int vbr_scale; /* encoded vbr scale from Vbr header data*/
  54.   u_char toc[NUMTOCENTRIES]; /* may be NULL if toc not desired*/
  55. }   VBRTAGDATA;
  56. /*
  57. //    4 bytes for Header Tag
  58. //    4 bytes for Header Flags
  59. //  100 bytes for entry (NUMTOCENTRIES)
  60. //    4 bytes for FRAME SIZE
  61. //    4 bytes for STREAM_SIZE
  62. //    4 bytes for VBR SCALE. a VBR quality indicator: 0=best 100=worst
  63. //   20 bytes for LAME tag.  for example, "LAME3.12 (beta 6)"
  64. // ___________
  65. //  140 bytes
  66. */
  67. #define VBRHEADERSIZE (NUMTOCENTRIES+4+4+4+4+4)
  68. int CheckVbrTag(unsigned char *buf);
  69. int GetVbrTag(VBRTAGDATA *pTagData,  unsigned char *buf);
  70. int SeekPoint(unsigned char TOC[NUMTOCENTRIES], int file_bytes, float percent);
  71. int InitVbrTag(Bit_stream_struc* pBs,int nVersion,int nMode, int SampIndex);
  72. int PutVbrTag(char* lpszFileName,int nVbrScale,int nVersion);
  73. void AddVbrFrame(int nStreamPos);
  74. #endif