mirror of
https://github.com/mpv-player/mpv
synced 2025-01-02 04:42:10 +00:00
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:
parent
cf3100872d
commit
cc7fdaf5c5
@ -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);
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user