VIDIX: Mark some functions not used outside their files as static.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30591 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-02-16 13:04:00 +00:00
parent cf3100872d
commit cc7fdaf5c5
2 changed files with 5 additions and 3 deletions

View File

@ -441,12 +441,14 @@ struct rivatv_info {
};
typedef struct rivatv_info rivatv_info;
uint8_t nvReadVGA (struct rivatv_chip *chip, int index) {
static uint8_t nvReadVGA(struct rivatv_chip *chip, int index)
{
VID_WR08 (chip->PCIO, 0x3D4, index);
return VID_RD08 (chip->PCIO, 0x3D5);
}
void nvWriteVGA (struct rivatv_chip *chip, int index, int data) {
static void nvWriteVGA(struct rivatv_chip *chip, int index, int data)
{
VID_WR08 (chip->PCIO, 0x3D4, index);
VID_WR08 (chip->PCIO, 0x3D5, data);
}

View File

@ -153,7 +153,7 @@ int vdlPlaybackSetEq (VDXContext *ctx, const vidix_video_eq_t *e)
return ctx->drv->set_eq ? ctx->drv->set_eq (e) : ENOSYS;
}
int vdlPlaybackCopyFrame (VDXContext *ctx, const vidix_dma_t *f)
static int vdlPlaybackCopyFrame(VDXContext *ctx, const vidix_dma_t *f)
{
return ctx->drv->copy_frame ? ctx->drv->copy_frame (f) : ENOSYS;
}