mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
suppressed getopt.h
Originally committed as revision 1422 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9ebc63a967
commit
e366e6795d
@ -6,13 +6,16 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <getopt.h>
|
|
||||||
|
|
||||||
#include "dsputil.h"
|
#include "dsputil.h"
|
||||||
|
|
||||||
#include "i386/mmx.h"
|
#include "i386/mmx.h"
|
||||||
#include "simple_idct.h"
|
#include "simple_idct.h"
|
||||||
|
|
||||||
|
#ifndef MAX
|
||||||
|
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
|
||||||
|
#endif
|
||||||
|
|
||||||
/* reference fdct/idct */
|
/* reference fdct/idct */
|
||||||
extern void fdct(DCTELEM *block);
|
extern void fdct(DCTELEM *block);
|
||||||
extern void idct(DCTELEM *block);
|
extern void idct(DCTELEM *block);
|
||||||
@ -24,12 +27,6 @@ extern void ff_mmxext_idct(DCTELEM *data);
|
|||||||
|
|
||||||
extern void odivx_idct_c (short *block);
|
extern void odivx_idct_c (short *block);
|
||||||
|
|
||||||
void (*add_pixels_clamped)(const DCTELEM *block/*align 16*/,
|
|
||||||
UINT8 *pixels/*align 8*/, int line_size);
|
|
||||||
|
|
||||||
void (*put_pixels_clamped)(const DCTELEM *block/*align 16*/,
|
|
||||||
UINT8 *pixels/*align 8*/, int line_size);
|
|
||||||
|
|
||||||
#define AANSCALE_BITS 12
|
#define AANSCALE_BITS 12
|
||||||
static const unsigned short aanscales[64] = {
|
static const unsigned short aanscales[64] = {
|
||||||
/* precomputed values scaled up by 14 bits */
|
/* precomputed values scaled up by 14 bits */
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/* FFT and MDCT tests */
|
/* FFT and MDCT tests */
|
||||||
#include "dsputil.h"
|
#include "dsputil.h"
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <getopt.h>
|
#include <unistd.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
|
|
||||||
int mm_flags;
|
int mm_flags;
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <getopt.h>
|
|
||||||
|
|
||||||
#include "dsputil.h"
|
#include "dsputil.h"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user