make some functions static (patch by Dieter < freebsd at sopwith.solgatos.com >)

Originally committed as revision 4905 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Dieter
2006-01-28 16:05:06 +00:00
committed by Aurelien Jacobs
parent fdb52bccf6
commit 1b47fafd9f
4 changed files with 5 additions and 5 deletions

View File

@@ -5741,7 +5741,7 @@ static int decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n
return 0;
}
void inline compute_mb_neighboors(H264Context *h)
static void inline compute_mb_neighboors(H264Context *h)
{
MpegEncContext * const s = &h->s;
const int mb_xy = s->mb_x + s->mb_y*s->mb_stride;