Revision 4052cbf1 libavcodec/dsputil.c
libavcodec/dsputil.c | ||
---|---|---|
33 | 33 |
#include "faandct.h" |
34 | 34 |
#include "faanidct.h" |
35 | 35 |
#include "mathops.h" |
36 |
#include "h263.h" |
|
37 | 36 |
#include "snow.h" |
38 | 37 |
#include "mpegvideo.h" |
39 | 38 |
#include "config.h" |
... | ... | |
2876 | 2875 |
} |
2877 | 2876 |
|
2878 | 2877 |
static void h263_v_loop_filter_c(uint8_t *src, int stride, int qscale){ |
2879 |
if(CONFIG_ANY_H263) {
|
|
2878 |
if(CONFIG_H263_DECODER || CONFIG_H263_ENCODER) {
|
|
2880 | 2879 |
int x; |
2881 | 2880 |
const int strength= ff_h263_loop_filter_strength[qscale]; |
2882 | 2881 |
|
... | ... | |
2913 | 2912 |
} |
2914 | 2913 |
|
2915 | 2914 |
static void h263_h_loop_filter_c(uint8_t *src, int stride, int qscale){ |
2916 |
if(CONFIG_ANY_H263) {
|
|
2915 |
if(CONFIG_H263_DECODER || CONFIG_H263_ENCODER) {
|
|
2917 | 2916 |
int y; |
2918 | 2917 |
const int strength= ff_h263_loop_filter_strength[qscale]; |
2919 | 2918 |
|
... | ... | |
4807 | 4806 |
c->h264_h_loop_filter_chroma_intra= h264_h_loop_filter_chroma_intra_c; |
4808 | 4807 |
c->h264_loop_filter_strength= NULL; |
4809 | 4808 |
|
4810 |
if (CONFIG_ANY_H263) {
|
|
4809 |
if (CONFIG_H263_DECODER || CONFIG_H263_ENCODER) {
|
|
4811 | 4810 |
c->h263_h_loop_filter= h263_h_loop_filter_c; |
4812 | 4811 |
c->h263_v_loop_filter= h263_v_loop_filter_c; |
4813 | 4812 |
} |
Also available in: Unified diff