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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is MPEG4IP.
  13.  * 
  14.  * The Initial Developer of the Original Code is Cisco Systems Inc.
  15.  * Portions created by Cisco Systems Inc. are
  16.  * Copyright (C) Cisco Systems Inc. 2001-2002.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  * Dave Mackie dmackie@cisco.com
  20.  */
  21. #ifndef __AUDIO_HINTERS_INCLUDED__
  22. #define __AUDIO_HINTERS_INCLUDED__ 
  23. // Generic Audio Hinters
  24. typedef u_int32_t (*MP4AV_AudioSampleSizer)(
  25. MP4FileHandle mp4File, 
  26. MP4TrackId mediaTrackId, 
  27. MP4SampleId sampleId); 
  28. typedef bool (*MP4AV_AudioConcatenator)(
  29. MP4FileHandle mp4File, 
  30. MP4TrackId mediaTrackId, 
  31. MP4TrackId hintTrackId,
  32. u_int8_t samplesThisHint, 
  33. MP4SampleId* pSampleIds, 
  34. MP4Duration hintDuration,
  35. u_int16_t maxPayloadSize);
  36. typedef bool (*MP4AV_AudioFragmenter)(
  37. MP4FileHandle mp4File, 
  38. MP4TrackId mediaTrackId, 
  39. MP4TrackId hintTrackId,
  40. MP4SampleId sampleId, 
  41. u_int32_t sampleSize, 
  42. MP4Duration sampleDuration,
  43. u_int16_t maxPayloadSize);
  44. bool MP4AV_AudioConsecutiveHinter( 
  45. MP4FileHandle mp4File, 
  46. MP4TrackId mediaTrackId, 
  47. MP4TrackId hintTrackId,
  48. MP4Duration sampleDuration, 
  49. u_int8_t perPacketHeaderSize,
  50. u_int8_t perSampleHeaderSize,
  51. u_int8_t maxSamplesPerPacket,
  52. u_int16_t maxPayloadSize,
  53. MP4AV_AudioSampleSizer pSizer,
  54. MP4AV_AudioConcatenator pConcatenator,
  55. MP4AV_AudioFragmenter pFragmenter);
  56. bool MP4AV_AudioInterleaveHinter( 
  57. MP4FileHandle mp4File, 
  58. MP4TrackId mediaTrackId, 
  59. MP4TrackId hintTrackId,
  60. MP4Duration sampleDuration, 
  61. u_int8_t stride, 
  62. u_int8_t bundle,
  63. u_int16_t maxPayloadSize,
  64. MP4AV_AudioConcatenator pConcatenator);
  65. #endif /* __AUDIO_HINTERS_INCLUDED__ */