Make some functions which aren't used outside their declaring source file

and have no prototype in a header file static.
patch by Stefan Huehner, stefan huehner org

Originally committed as revision 8686 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefan Huehner
2007-04-08 20:21:11 +00:00
committed by Diego Biurrun
parent 597cbdaf03
commit 119e48d960
2 changed files with 7 additions and 7 deletions

View File

@ -424,11 +424,11 @@ static int decode_info_header(NUTContext *nut){
return 0;
}
int sp_pos_cmp(syncpoint_t *a, syncpoint_t *b){
static int sp_pos_cmp(syncpoint_t *a, syncpoint_t *b){
return (a->pos - b->pos>>32) - (b->pos - a->pos>>32);
}
int sp_pts_cmp(syncpoint_t *a, syncpoint_t *b){
static int sp_pts_cmp(syncpoint_t *a, syncpoint_t *b){
return (a->ts - b->ts>>32) - (b->ts - a->ts>>32);
}