📄 media_frame.h
字号:
/* * The contents of this file are subject to the Mozilla Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. * * The Original Code is MPEG4IP. * * The Initial Developer of the Original Code is Cisco Systems Inc. * Portions created by Cisco Systems Inc. are * Copyright (C) Cisco Systems Inc. 2000, 2001. All Rights Reserved. * * Contributor(s): * Dave Mackie dmackie@cisco.com * Bill May wmay@cisco.com */#ifndef __MEDIA_FRAME_H__#define __MEDIA_FRAME_H__#include <sys/types.h>#include "mpeg4ip_sdl_includes.h"#include "media_time.h"typedef u_int16_t MediaType;#define UNDEFINEDFRAME 0#define PCMAUDIOFRAME 1#define MP3AUDIOFRAME 2#define AACAUDIOFRAME 3#define VORBISAUDIOFRAME 5#define AMRNBAUDIOFRAME 6#define AMRWBAUDIOFRAME 7#define ALAWAUDIOFRAME 8#define ULAWAUDIOFRAME 9#define NETPCMAUDIOFRAME 10#define YUVVIDEOFRAME 20#define RGBVIDEOFRAME 21#define MPEG4VIDEOFRAME 22#define H261VIDEOFRAME 23#define MPEG2VIDEOFRAME 24#define RAWPCMAUDIOFRAME 25#define H263VIDEOFRAME 26#define H264VIDEOFRAME 27#define PLAINTEXTFRAME 32#define HREFTEXTFRAME 33typedef void (*media_free_f)(void *);typedef struct yuv_media_frame_t { const uint8_t *y, *u, *v; uint32_t w, h; uint16_t y_stride; uint16_t uv_stride; void *hardware; uint hardware_version; uint8_t hardware_index; bool free_y; bool force_iframe;} yuv_media_frame_t;typedef struct h264_nal_buf_t { uint32_t nal_offset; uint32_t nal_length; uint8_t nal_type; bool unique;} h264_nal_buf_t;typedef struct h264_media_frame_t { const uint8_t *buffer; uint32_t buffer_len; uint32_t nal_number; h264_nal_buf_t *nal_bufs;} h264_media_frame_t;class CMediaFrame {public: CMediaFrame( MediaType type = UNDEFINEDFRAME, void* pData = NULL, u_int32_t dataLength = 0, Timestamp dts = 0, Duration duration = 0, u_int32_t durationScale = TimestampTicks, Timestamp pts = 0) { m_pMutex = SDL_CreateMutex(); if (m_pMutex == NULL) { debug_message("CMediaFrame CreateMutex error"); } m_refcnt = 1; m_type = type; m_pData = pData; m_dataLength = dataLength; m_dts = dts; m_pts = pts; m_duration = duration; m_durationScale = durationScale; m_media_free = NULL; } ~CMediaFrame() { if (m_refcnt != 0) abort(); if (m_media_free != NULL) { (m_media_free)(m_pData); } else { free(m_pData); } SDL_DestroyMutex(m_pMutex); } void SetMediaFreeFunction(media_free_f m) { m_media_free = m; }; void AddReference(void) { uint16_t ref; if (SDL_LockMutex(m_pMutex) == -1) { debug_message("AddReference LockMutex error"); } m_refcnt++; ref = m_refcnt; if (SDL_UnlockMutex(m_pMutex) == -1) { debug_message("AddReference UnlockMutex error"); } //debug_message("%p add %u", this, ref); } bool RemoveReference(void) { u_int16_t ref; if (SDL_LockMutex(m_pMutex) == -1) { debug_message("RemoveReference LockMutex error"); } m_refcnt--; ref = m_refcnt; if (SDL_UnlockMutex(m_pMutex) == -1) { debug_message("RemoveReference UnlockMutex error"); } //debug_message("%p rm %u", this, ref); return ref == 0; } // predefined types of frames // get methods for properties MediaType GetType(void) { return m_type; } void* GetData(void) { return m_pData; } u_int32_t GetDataLength(void) { return m_dataLength; } Timestamp GetTimestamp(void) { return m_dts; } void SetTimestamp(Timestamp t) { m_dts = t; } Timestamp GetPtsTimestamp (void) { return m_pts; }; void SetPtsTimestamp(Timestamp t) { m_pts = t; }; Duration GetDuration(void) { return m_duration; } void SetDuration(Duration d) { m_duration = d; } u_int32_t GetDurationScale(void) { return m_durationScale; } u_int32_t ConvertDuration(u_int32_t newScale) { if (m_durationScale == newScale) { return m_duration; // for newer code } // for older code return (((m_duration * newScale) / (m_durationScale >> 1)) + 1) >> 1; }protected: SDL_mutex* m_pMutex; u_int16_t m_refcnt; MediaType m_type; void* m_pData; u_int32_t m_dataLength; Timestamp m_pts; Timestamp m_dts; Duration m_duration; u_int32_t m_durationScale; media_free_f m_media_free;};#endif /* __MEDIA_FRAME_H__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -