workarounds.c
资源名称:NETVIDEO.rar [点击查看]
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:0k
源码类别:
流媒体/Mpeg4/MP4
开发平台:
Visual C++
- // GCC 3.0 workarounds
- #include "workarounds.h"
- int64_t mpeg3io_tell_gcc(mpeg3_fs_t *fs)
- {
- return fs->current_byte;
- }
- double mpeg3_add_double_gcc(double x, double y)
- {
- return x + y;
- }
- double mpeg3_divide_double_gcc(double x, double y)
- {
- return x / y;
- }
- int64_t mpeg3_total_bytes_gcc(mpeg3_title_t *title)
- {
- return title->total_bytes;
- }