Mercurial > libavcodec.hg
comparison mpegvideo.c @ 17:b69fe46fd708 libavcodec
Adding fastmemcpy stuff to speedup mplayer project
| author | nickols_k |
|---|---|
| date | Thu, 02 Aug 2001 08:29:38 +0000 |
| parents | 174ef88f619a |
| children | 1d2077091e88 |
comparison
equal
deleted
inserted
replaced
| 16:89bc3bf1a031 | 17:b69fe46fd708 |
|---|---|
| 21 #include <math.h> | 21 #include <math.h> |
| 22 #include <string.h> | 22 #include <string.h> |
| 23 #include "avcodec.h" | 23 #include "avcodec.h" |
| 24 #include "dsputil.h" | 24 #include "dsputil.h" |
| 25 #include "mpegvideo.h" | 25 #include "mpegvideo.h" |
| 26 | |
| 27 /* Stuff below is useful only for mplayer project */ | |
| 28 #ifdef HAVE_CONFIG_H | |
| 29 #include "../config.h" | |
| 30 #endif | |
| 31 | |
| 32 #ifdef USE_FASTMEMCPY | |
| 33 #include "fastmemcpy.h" | |
| 34 #endif | |
| 26 | 35 |
| 27 static void encode_picture(MpegEncContext *s, int picture_number); | 36 static void encode_picture(MpegEncContext *s, int picture_number); |
| 28 static void rate_control_init(MpegEncContext *s); | 37 static void rate_control_init(MpegEncContext *s); |
| 29 static int rate_estimate_qscale(MpegEncContext *s); | 38 static int rate_estimate_qscale(MpegEncContext *s); |
| 30 static void dct_unquantize_mpeg1_c(MpegEncContext *s, | 39 static void dct_unquantize_mpeg1_c(MpegEncContext *s, |
