workarounds.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:0k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. // GCC 3.0 workarounds
  2. #include "workarounds.h"
  3. int64_t mpeg3io_tell_gcc(mpeg3_fs_t *fs)
  4. {
  5.   return fs->current_byte;
  6. }
  7. double mpeg3_add_double_gcc(double x, double y)
  8. {
  9. return x + y;
  10. }
  11. double mpeg3_divide_double_gcc(double x, double y)
  12. {
  13. return x / y;
  14. }
  15. int64_t mpeg3_total_bytes_gcc(mpeg3_title_t *title)
  16. {
  17. return title->total_bytes;
  18. }