diff options
-rw-r--r-- | libvo/vo_vdpau.c | 2 | ||||
-rw-r--r-- | libvo/vo_xv.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_vdpau.c b/libvo/vo_vdpau.c index e613205834..286015176c 100644 --- a/libvo/vo_vdpau.c +++ b/libvo/vo_vdpau.c @@ -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; diff --git a/libvo/vo_xv.c b/libvo/vo_xv.c index f9579c1e19..886fd0a0d7 100644 --- a/libvo/vo_xv.c +++ b/libvo/vo_xv.c @@ -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; |