mp4av_mpeg4.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. 2000-2002.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  * Dave Mackie dmackie@cisco.com
  20.  */
  21. #ifndef __MP4AV_MPEG4_INCLUDED__
  22. #define __MP4AV_MPEG4_INCLUDED__
  23. #define MP4AV_MPEG4_SYNC 0x000001
  24. #define MP4AV_MPEG4_VOSH_START 0xB0
  25. #define MP4AV_MPEG4_VOL_START 0x20
  26. #define MP4AV_MPEG4_GOV_START 0xB3
  27. #define MP4AV_MPEG4_VO_START 0xB5
  28. #define MP4AV_MPEG4_VOP_START 0xB6
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. bool MP4AV_Mpeg4ParseVosh(
  33. u_int8_t* pVoshBuf, 
  34. u_int32_t voshSize,
  35. u_int8_t* pProfileLevel);
  36. bool MP4AV_Mpeg4CreateVosh(
  37. u_int8_t** ppBytes,
  38. u_int32_t* pNumBytes,
  39. u_int8_t profileLevel);
  40. bool MP4AV_Mpeg4CreateVo(
  41. u_int8_t** ppBytes,
  42. u_int32_t* pNumBytes,
  43. u_int8_t objectId);
  44. bool MP4AV_Mpeg4ParseVol(
  45. u_int8_t* pVolBuf, 
  46. u_int32_t volSize,
  47. u_int8_t* pTimeBits, 
  48. u_int16_t* pTimeTicks, 
  49. u_int16_t* pFrameDuration, 
  50. u_int16_t* pFrameWidth, 
  51. u_int16_t* pFrameHeight);
  52. bool MP4AV_Mpeg4CreateVol(
  53. u_int8_t** ppBytes,
  54. u_int32_t* pNumBytes,
  55. u_int8_t profile,
  56. float frameRate,
  57. bool shortTime,
  58. bool variableRate,
  59. u_int16_t width,
  60. u_int16_t height,
  61. u_int8_t quantType,
  62. u_int8_t* pTimeBits DEFAULT_PARM(NULL));
  63. bool MP4AV_Mpeg4ParseGov(
  64. u_int8_t* pGovBuf, 
  65. u_int32_t govSize,
  66. u_int8_t* pHours, 
  67. u_int8_t* pMinutes, 
  68. u_int8_t* pSeconds);
  69. bool MP4AV_Mpeg4ParseVop(
  70. u_int8_t* pVopBuf, 
  71. u_int32_t vopSize,
  72. u_char* pVopType, 
  73. u_int8_t timeBits, 
  74. u_int16_t timeTicks, 
  75. u_int32_t* pVopTimeIncrement);
  76. u_int8_t MP4AV_Mpeg4VideoToSystemsProfileLevel(
  77. u_int8_t videoProfileLevel);
  78. u_char MP4AV_Mpeg4GetVopType(
  79. u_int8_t* pVopBuf, 
  80. u_int32_t vopSize);
  81. #ifdef __cplusplus
  82. }
  83. #endif
  84. #endif /* __MP4AV_MPEG4_INCLUDED__ */