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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. #ifndef __MPEG2T_THREAD_H__
  2. #define __MPEG2T_THREAD_H__ 1
  3. #include "systems.h"
  4. typedef struct mpeg2t_client_ mpeg2t_client_t;
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. mpeg2t_client_t *mpeg2t_create_client(const char *address,
  9.        in_port_t rx_port,
  10.        in_port_t tx_port,
  11.        int use_rtp,
  12.        double rtcp_bw, 
  13.        int ttl,
  14.        char *errmsg,
  15.       uint32_t errmsg_len);
  16. void mpeg2t_delete_client(mpeg2t_client_t *info);
  17. void mpeg2t_set_loglevel(int loglevel);
  18. void mpeg2t_set_error_func (error_msg_func_t func);
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22. #endif