media_flow.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.  * Bill May  wmay@cisco.com
  21.  */
  22. #ifndef __MEDIA_FLOW_H__
  23. #define __MEDIA_FLOW_H__
  24. #include "mp4live_config.h"
  25. #include "media_source.h"
  26. #include "media_sink.h"
  27. // abstract parent class
  28. class CMediaFlow {
  29. public:
  30. CMediaFlow(CLiveConfig* pConfig = NULL) {
  31. m_pConfig = pConfig;
  32. m_started = false;
  33. }
  34. virtual void Start() = NULL;
  35. virtual void Stop() = NULL; 
  36. void SetConfig(CLiveConfig* pConfig) {
  37. m_pConfig = pConfig;
  38. }
  39. virtual bool GetStatus(u_int32_t valueName, void* pValue);
  40. protected:
  41. CLiveConfig* m_pConfig;
  42. bool m_started;
  43. };
  44. enum {
  45. FLOW_STATUS_DONE,
  46. FLOW_STATUS_DURATION,
  47. FLOW_STATUS_PROGRESS,
  48. FLOW_STATUS_VIDEO_ENCODED_FRAMES,
  49. };
  50. class CAVMediaFlow : public CMediaFlow {
  51. public:
  52. CAVMediaFlow(CLiveConfig* pConfig = NULL)
  53. : CMediaFlow(pConfig) {
  54. m_videoSource = NULL;
  55. m_audioSource = NULL;
  56. m_videoPreview = NULL;
  57. m_mp4Recorder = NULL;
  58. m_rtpTransmitter = NULL;
  59. m_rawSink = NULL;
  60. }
  61. virtual ~CAVMediaFlow() {
  62. Stop();
  63. }
  64. void Start(void);
  65. void Stop(void);
  66. void StartVideoPreview(void);
  67. void StopVideoPreview(void);
  68. void SetAudioInput(void);
  69. void SetAudioOutput(bool mute);
  70. bool GetStatus(u_int32_t valueName, void* pValue);
  71. protected:
  72. void AddSink(CMediaSink* pSink);
  73. void RemoveSink(CMediaSink* pSink);
  74. protected:
  75. CMediaSource*  m_videoSource;
  76. CMediaSource* m_audioSource;
  77. CMediaSink* m_videoPreview;
  78. CMediaSink* m_mp4Recorder;
  79. CMediaSink* m_rtpTransmitter;
  80. CMediaSink* m_rawSink;
  81. };
  82. #endif /* __MEDIA_FLOW_H__ */