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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. #ifndef __MPEG2T_PRIVATE_H__
  2. #define __MPEG2T_PRIVATE_H__ 1
  3. #include "mpeg2_transport.h"
  4. // mpeg2t_mp3.c
  5. int process_mpeg2t_mpeg_audio(mpeg2t_es_t *es_pid, const uint8_t *esptr,
  6.       uint32_t buflen);
  7. // mpeg2_video.c
  8. int process_mpeg2t_mpeg_video(mpeg2t_es_t *es_pid, 
  9.       const uint8_t *esptr, 
  10.       uint32_t buflen);
  11. void mpeg2t_malloc_es_work(mpeg2t_es_t *es_pid, uint32_t frame_len);
  12. void mpeg2t_finished_es_work(mpeg2t_es_t *es_pid, uint32_t frame_len);
  13. void mpeg2t_message(int loglevel, const char *fmt, ...)
  14. #ifndef _WIN32
  15.      __attribute__((format(__printf__, 2, 3)));
  16. #else
  17.      ;
  18. #endif
  19. #endif