msg_queue.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.  *              Bill May        wmay@cisco.com
  20.  */
  21. /*
  22.  * msg_queue.h - provides a basic, SDL based message passing routine
  23.  */
  24. #ifndef __MSG_QUEUE_H__
  25. #define __MSG_QUEUE_H__ 1
  26. #include "systems.h"
  27. #include <SDL.h>
  28. #include <SDL_thread.h>
  29. class CMsg {
  30.  public:
  31.   CMsg(uint32_t value, unsigned char *msg = NULL, uint32_t msg_len = 0);
  32.   CMsg(uint32_t value, uint32_t param);
  33.   ~CMsg(void);
  34.   const unsigned char *get_message(uint32_t &len);
  35.   CMsg *get_next(void) { return m_next; };
  36.   void set_next (CMsg *next) { m_next = next; };
  37.   uint32_t get_value(void) { return m_value;};
  38.   int has_param(void) { return m_has_param; };
  39.   uint32_t get_param (void) { return m_param; };
  40.  private:
  41.   CMsg *m_next;
  42.   uint32_t m_value;
  43.   int m_has_param;
  44.   uint32_t m_param;
  45.   uint32_t m_msg_len;
  46.   unsigned char *m_msg;
  47. };
  48. class CMsgQueue {
  49.  public:
  50.   CMsgQueue(void);
  51.   ~CMsgQueue(void);
  52.   int send_message(uint32_t msgval,
  53.    unsigned char *msg = NULL,
  54.    uint32_t msg_len = 0,
  55.    SDL_sem *sem = NULL);
  56.   int send_message(uint32_t msgval,
  57.   uint32_t param, 
  58.   SDL_sem *sem = NULL);
  59.   CMsg *get_message(void);
  60.  private:
  61.   int send_message(CMsg *msg, SDL_sem *sem);
  62.   CMsg *m_msg_queue;
  63.   SDL_mutex *m_msg_queue_mutex;
  64. };
  65. #endif