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

流媒体/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.  *              Bill May        wmay@cisco.com
  20.  */
  21. /*
  22.  * video.h - contains the interface class between the codec and the video
  23.  * display hardware.
  24.  */
  25. #ifndef __VIDEO_H__
  26. #define __VIDEO_H__ 1
  27. #include "systems.h"
  28. //#include <type/typeapi.h>
  29. #include <SDL.h>
  30. #include "codec_plugin.h"
  31. #define MAX_VIDEO_BUFFERS 16
  32. class CPlayerSession;
  33. class CVideoSync {
  34.  public:
  35.   CVideoSync(CPlayerSession *ptptr);
  36.   virtual ~CVideoSync(void);
  37.   void set_wait_sem (SDL_sem *p) { m_decode_sem = p; };  // from set up
  38.   virtual void flush_decode_buffers(void);    
  39.                               // from decoder task in response to stop
  40.   void set_eof(void) { m_eof_found = 1; };
  41.   int get_eof(void) { return m_eof_found; };
  42.   virtual void set_screen_size(int scaletimes2); // 1 gets 50%, 2, normal, 4, 2 times
  43.   virtual void set_fullscreen(int fullscreen);
  44.   virtual int get_fullscreen (void) { return 0;};
  45.   virtual int initialize_video(const char *name, int x, int y);  // from sync task
  46.   virtual int is_video_ready(uint64_t &disptime);  // from sync task
  47.   virtual int64_t play_video_at(uint64_t current_time, // from sync task
  48.  int &have_eof);
  49.   virtual void do_video_resize(void);     // from sync
  50.   virtual void flush_sync_buffers(void);  // from sync task in response to stop
  51.  protected:
  52.   CPlayerSession *m_psptr;
  53.   SDL_sem *m_decode_sem;
  54.   int m_eof_found;
  55.   uint32_t m_consec_skipped;
  56.   uint32_t m_behind_frames;
  57.   uint32_t m_total_frames;
  58.   uint32_t m_filled_frames;
  59.   uint64_t m_behind_time;
  60.   uint64_t m_behind_time_max;
  61.   uint32_t m_skipped_render;
  62.   uint64_t m_msec_per_frame;
  63.   uint64_t m_last_filled_time;
  64. };
  65. /* frame doublers */
  66. #ifdef USE_MMX
  67. extern "C" void FrameDoublerMmx(u_int8_t* pSrcPlane, u_int8_t* pDstPlane, 
  68. u_int32_t srcWidth, u_int32_t srcHeight);
  69. #else
  70. extern void FrameDoubler(u_int8_t* pSrcPlane, u_int8_t* pDstPlane, 
  71. u_int32_t srcWidth, u_int32_t srcHeight, u_int32_t destWidth);
  72. #endif
  73. video_vft_t *get_video_vft(void);
  74. CVideoSync *create_video_sync(CPlayerSession *psptr);
  75. #endif