Commit 0b6af417 authored by diego's avatar diego

Put halfpel_interpol under the same #ifdef as its usage, fixes the warning:

snow.c:4142: warning: #halfpel_interpol# defined but not used


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11035 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ae16e958
......@@ -4139,6 +4139,7 @@ static int encode_init(AVCodecContext *avctx)
return 0;
}
#ifdef USE_HALFPEL_PLANE
static void halfpel_interpol(SnowContext *s, uint8_t *halfpel[4][4], AVFrame *frame){
int p,x,y;
......@@ -4182,6 +4183,7 @@ static void halfpel_interpol(SnowContext *s, uint8_t *halfpel[4][4], AVFrame *fr
//FIXME border!
}
}
#endif /* USE_HALFPEL_PLANE */
static int frame_start(SnowContext *s){
AVFrame tmp;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment