file_mp4_recorder.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, 2001.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  * Dave Mackie dmackie@cisco.com
  20.  * Bill May  wmay@cisco.com
  21.  */
  22. #ifndef __FILE_MP4_RECORDER_H__
  23. #define __FILE_MP4_RECORDER_H__
  24. #include <mp4.h>
  25. #include <mp4av.h>
  26. #include "media_sink.h"
  27. #define RTP_HEADER_STD_SIZE 12
  28. class CMp4Recorder : public CMediaSink {
  29. public:
  30. CMp4Recorder() {
  31. m_mp4File = NULL;
  32. m_rawAudioTrackId = MP4_INVALID_TRACK_ID;
  33. m_encodedAudioTrackId = MP4_INVALID_TRACK_ID;
  34. m_rawVideoTrackId = MP4_INVALID_TRACK_ID;
  35. m_encodedVideoTrackId = MP4_INVALID_TRACK_ID;
  36. m_videoTimeScale = 90000;
  37. m_movieTimeScale = m_videoTimeScale;
  38. }
  39. protected:
  40. int ThreadMain(void);
  41. void DoStartRecord(void);
  42. void DoStopRecord(void);
  43. void DoWriteFrame(CMediaFrame* pFrame);
  44. protected:
  45. bool m_canRecordAudio; // used for sync'ed start of A/V
  46. char* m_mp4FileName;
  47. MP4FileHandle m_mp4File;
  48. u_int32_t m_movieTimeScale;
  49. u_int32_t m_videoTimeScale;
  50. MP4TrackId m_rawVideoTrackId;
  51. u_int32_t m_rawVideoFrameNum;
  52. MP4TrackId m_encodedVideoTrackId;
  53. u_int32_t m_encodedVideoFrameNum;
  54. MP4TrackId m_rawAudioTrackId;
  55. u_int32_t m_rawAudioTimeScale;
  56. u_int32_t m_rawAudioFrameNum;
  57. Timestamp m_rawAudioStartTimestamp;
  58. Duration m_rawAudioDuration;
  59. MP4TrackId m_encodedAudioTrackId;
  60. u_int32_t m_encodedAudioTimeScale;
  61. u_int32_t m_encodedAudioFrameNum;
  62. Timestamp m_encodedAudioStartTimestamp;
  63. Duration m_encodedAudioDuration;
  64. };
  65. #endif /* __FILE_MP4_RECORDER_H__ */