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

流媒体/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, 2001.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  * Dave Mackie dmackie@cisco.com
  20.  * Bill May  wmay@cisco.com
  21.  */
  22. #ifndef __MEDIA_FRAME_H__
  23. #define __MEDIA_FRAME_H__
  24. #include <sys/types.h>
  25. #include <SDL.h>
  26. #include "media_time.h"
  27. typedef u_int16_t MediaType;
  28. class CMediaFrame {
  29. public:
  30. CMediaFrame(
  31. MediaType type = 0, 
  32. void* pData = NULL, 
  33. u_int32_t dataLength = 0, 
  34. Timestamp timestamp = 0, 
  35. Duration duration = 0, 
  36. u_int32_t durationScale = TimestampTicks) {
  37. m_pMutex = SDL_CreateMutex();
  38. if (m_pMutex == NULL) {
  39. debug_message("CMediaFrame CreateMutex error");
  40. }
  41. m_refcnt = 1;
  42. m_type = type;
  43. m_pData = pData;
  44. m_dataLength = dataLength;
  45. m_timestamp = timestamp;
  46. m_duration = duration;
  47. m_durationScale = durationScale;
  48. }
  49. void AddReference(void) {
  50. if (SDL_LockMutex(m_pMutex) == -1) {
  51. debug_message("AddReference LockMutex error");
  52. }
  53. m_refcnt++;
  54. if (SDL_UnlockMutex(m_pMutex) == -1) {
  55. debug_message("AddReference UnlockMutex error");
  56. }
  57. }
  58. void RemoveReference(void) {
  59. if (SDL_LockMutex(m_pMutex) == -1) {
  60. debug_message("RemoveReference LockMutex error");
  61. }
  62. m_refcnt--;
  63. if (SDL_UnlockMutex(m_pMutex) == -1) {
  64. debug_message("RemoveReference UnlockMutex error");
  65. }
  66. }
  67. void operator delete(void* p) {
  68. CMediaFrame* me = (CMediaFrame*)p;
  69. if (SDL_LockMutex(me->m_pMutex) == -1) {
  70. debug_message("CMediaFrame delete LockMutex error");
  71. }
  72. if (me->m_refcnt > 0) {
  73. me->m_refcnt--;
  74. }
  75. if (me->m_refcnt > 0) {
  76. if (SDL_UnlockMutex(me->m_pMutex) == -1) {
  77. debug_message("CMediaFrame delete UnlockMutex error");
  78. }
  79. return;
  80. }
  81. free(me->m_pData);
  82. SDL_DestroyMutex(me->m_pMutex);
  83. free(me);
  84. }
  85. // predefined types of frames
  86. static const MediaType UndefinedFrame  = 0;
  87. static const MediaType PcmAudioFrame = 1;
  88. static const MediaType Mp3AudioFrame  = 2;
  89. static const MediaType AacAudioFrame  = 3;
  90. static const MediaType Ac3AudioFrame = 4;
  91. static const MediaType VorbisAudioFrame = 5;
  92. static const MediaType YuvVideoFrame = 11;
  93. static const MediaType RgbVideoFrame = 12;
  94. static const MediaType Mpeg2VideoFrame = 13;
  95. static const MediaType Mpeg4VideoFrame = 14;
  96. static const MediaType ReconstructYuvVideoFrame  = 15;
  97. // get methods for properties
  98. MediaType GetType(void) {
  99. return m_type;
  100. }
  101. void* GetData(void) {
  102. return m_pData;
  103. }
  104. u_int32_t GetDataLength(void) {
  105. return m_dataLength;
  106. }
  107. Timestamp GetTimestamp(void) {
  108. return m_timestamp;
  109. }
  110. Duration GetDuration(void) {
  111. return m_duration;
  112. }
  113. u_int32_t GetDurationScale(void) {
  114. return m_durationScale;
  115. }
  116. u_int32_t ConvertDuration(u_int32_t newScale) {
  117. if (m_durationScale == newScale) {
  118. return m_duration; // for newer code
  119. }
  120. // for older code
  121. return (((m_duration * newScale) / (m_durationScale >> 1)) + 1) >> 1; 
  122. }
  123. protected:
  124. SDL_mutex* m_pMutex;
  125. u_int16_t m_refcnt;
  126. MediaType m_type;
  127. void*  m_pData;
  128. u_int32_t  m_dataLength;
  129. Timestamp m_timestamp;
  130. Duration  m_duration;
  131. u_int32_t m_durationScale;
  132. };
  133. #endif /* __MEDIA_FRAME_H__ */