#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <inttypes.h>
Go to the source code of this file.
◆ FFMIN
#define FFMIN |
( |
|
a, |
|
|
|
b |
|
) |
| ((a) > (b) ? (b) : (a)) |
◆ FFMAX
#define FFMAX |
( |
|
a, |
|
|
|
b |
|
) |
| ((a) > (b) ? (a) : (b)) |
◆ FFABS
#define FFABS |
( |
|
a | ) |
((a) >= 0 ? (a) : (-(a))) |
◆ fsize()
Definition at line 29 of file audiomatch.c.
Referenced by adts_aac_probe(), adts_aac_read_packet(), asf_read_stream_properties(), avi_read_header(), bmp_decode_frame(), compute_kernel(), dv_write_packet(), dxa_read_header(), ff_sauce_read(), flush_silent_frames(), flv_read_packet(), loas_probe(), main(), mp3_parse_info_tag(), pmp_header(), read_binary(), read_header(), and thp_read_header().
◆ main()
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |