diff options
author | Diego Elio Pettenò <flameeyes@gmail.com> | 2011-01-24 23:36:15 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-01-26 03:43:29 +0100 |
commit | 295edc77941e0c10ebe3d7c9b40db45aa7ebfad9 (patch) | |
tree | 9b863642270e1175dc80136c9bae8627753f4aa7 | |
parent | 291f326a2ea59eaac1b2bf6dd48cdf228a9d0f20 (diff) | |
download | ffmpeg-295edc77941e0c10ebe3d7c9b40db45aa7ebfad9.tar.gz |
Make denoise_dct_c and dct_quantize_trellis_c static.
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 1d4da6a460d5b78026e3b854fdd6f469957a054c)
-rw-r--r-- | libavcodec/mpegvideo_common.h | 2 | ||||
-rw-r--r-- | libavcodec/mpegvideo_enc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo_common.h b/libavcodec/mpegvideo_common.h index 8e46e692f9..135bd1f557 100644 --- a/libavcodec/mpegvideo_common.h +++ b/libavcodec/mpegvideo_common.h @@ -40,8 +40,6 @@ #include <limits.h> int dct_quantize_c(MpegEncContext *s, DCTELEM *block, int n, int qscale, int *overflow); -int dct_quantize_trellis_c(MpegEncContext *s, DCTELEM *block, int n, int qscale, int *overflow); -void denoise_dct_c(MpegEncContext *s, DCTELEM *block); /** * allocates a Picture diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c index 0f7142bee5..0018ad50f4 100644 --- a/libavcodec/mpegvideo_enc.c +++ b/libavcodec/mpegvideo_enc.c @@ -48,6 +48,8 @@ static int encode_picture(MpegEncContext *s, int picture_number); static int dct_quantize_refine(MpegEncContext *s, DCTELEM *block, int16_t *weight, DCTELEM *orig, int n, int qscale); static int sse_mb(MpegEncContext *s); +static void denoise_dct_c(MpegEncContext *s, DCTELEM *block); +static int dct_quantize_trellis_c(MpegEncContext *s, DCTELEM *block, int n, int qscale, int *overflow); /* enable all paranoid tests for rounding, overflows, etc... */ //#define PARANOID |