#include <stdio.h>#include <stdlib.h>#include <string.h>#include <inttypes.h>#include <assert.h>#include "libavutil/intfloat.h"Go to the source code of this file.
Macros | |
| #define | FFMIN(a, b) ((a) > (b) ? (b) : (a)) |
| #define | F 100 |
| #define | SIZE 2048 |
Functions | |
| static int64_t | log16 (uint64_t a) |
| static uint64_t | int_sqrt (uint64_t a) |
| static int16_t | get_s16l (uint8_t *p) |
| static float | get_f32l (uint8_t *p) |
| int | main (int argc, char *argv[]) |
Variables | |
| uint64_t | exp16_table [21] |
| #define F 100 |
Definition at line 30 of file tiny_psnr.c.
Definition at line 29 of file tiny_psnr.c.
Referenced by main().
| #define SIZE 2048 |
Definition at line 31 of file tiny_psnr.c.
Referenced by main().
|
static |
Definition at line 103 of file tiny_psnr.c.
Referenced by main().
|
static |
Definition at line 93 of file tiny_psnr.c.
Referenced by main().
|
static |
Definition at line 77 of file tiny_psnr.c.
Referenced by main().
|
static |
Definition at line 58 of file tiny_psnr.c.
Referenced by main().
| int main | ( | int | argc, |
| char * | argv[] | ||
| ) |
Definition at line 110 of file tiny_psnr.c.
| uint64_t exp16_table[21] |
Definition at line 33 of file tiny_psnr.c.
Referenced by log16().