FFmpeg
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <inttypes.h>
Go to the source code of this file.
Macros | |
#define | FFMIN(a, b) ((a) > (b) ? (b) : (a)) |
#define | FFMAX(a, b) ((a) > (b) ? (a) : (b)) |
#define | FFABS(a) ((a) >= 0 ? (a) : (-(a))) |
Functions | |
static int64_t | fsize (FILE *f) |
int | main (int argc, char **argv) |
|
static |
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(), dv_write_packet(), dxa_read_header(), ff_sauce_read(), flush_silent_frames(), flv_read_packet(), loas_probe(), main(), mp3_parse_info_tag(), pmp_header(), and thp_read_header().
Definition at line 37 of file audiomatch.c.