workarounds.c

来自「MPEG-4编解码的实现(包括MPEG4视音频编解码)」· C语言 代码 · 共 26 行

C
26
字号
// 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;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?