1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-06 07:01:45 +00:00

cosmetics: Add two missing "static"

Add missing 'static' to internal functions in vo_xv.c and vo_vdpau.c.
This commit is contained in:
Uoti Urpala 2009-10-22 04:21:14 +03:00
parent fa7983b236
commit 37713cb3ec
2 changed files with 2 additions and 2 deletions

View File

@ -559,7 +559,7 @@ static int create_vdp_decoder(struct vo *vo, int max_refs)
return 1;
}
int initialize_vdpau_objects(struct vo *vo)
static int initialize_vdpau_objects(struct vo *vo)
{
struct vdpctx *vc = vo->priv;
struct vdp_functions *vdp = vc->vdp;

View File

@ -400,7 +400,7 @@ static inline void put_xvimage(struct vo *vo, XvImage *xvi)
}
// Only copies luma for planar formats as draw_alpha doesn't change others */
void copy_backup_image(struct vo *vo, int dest, int src)
static void copy_backup_image(struct vo *vo, int dest, int src)
{
struct xvctx *ctx = vo->priv;