CVS: main/libmpcodecs dec_audio.h,1.6,1.7 dec_video.h,1.13,1.14 vf_vo.c,1.19,1.20
Update of /cvsroot/mplayer/main/libmpcodecs In directory mail:/var/tmp.root/cvs-serv26705/libmpcodecs Modified Files: dec_audio.h dec_video.h vf_vo.c Log Message: compiler warning fixes patch by Dominik Mierzejewski <dominik@rangers.eu.org> Index: dec_audio.h =================================================================== RCS file: /cvsroot/mplayer/main/libmpcodecs/dec_audio.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- dec_audio.h 5 Oct 2002 22:55:45 -0000 1.6 +++ dec_audio.h 13 Oct 2002 21:58:54 -0000 1.7 @@ -13,4 +13,4 @@ extern int init_audio_filters(sh_audio_t *sh_audio, int in_samplerate, int in_channels, int in_format, int in_bps, int out_samplerate, int out_channels, int out_format, int out_bps, - int out_minsize, int out_maxsize); \ No newline at end of file + int out_minsize, int out_maxsize); Index: dec_video.h =================================================================== RCS file: /cvsroot/mplayer/main/libmpcodecs/dec_video.h,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- dec_video.h 26 Sep 2002 01:31:18 -0000 1.13 +++ dec_video.h 13 Oct 2002 21:58:54 -0000 1.14 @@ -15,7 +15,7 @@ extern int get_video_quality_max(sh_video_t *sh_video); extern void set_video_quality(sh_video_t *sh_video,int quality); -int get_video_colors(sh_video_t *sh_video,char *item,int *value); +extern int get_video_colors(sh_video_t *sh_video,char *item,int *value); extern int set_video_colors(sh_video_t *sh_video,char *item,int value); extern int set_rectangle(sh_video_t *sh_video,int param,int value); Index: vf_vo.c =================================================================== RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_vo.c,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- vf_vo.c 9 Oct 2002 22:32:04 -0000 1.19 +++ vf_vo.c 13 Oct 2002 21:58:54 -0000 1.20 @@ -14,6 +14,8 @@ #define video_out ((vo_functions_t*)(vf->priv)) +static int query_format(struct vf_instance_s* vf, unsigned int fmt); /* forward declaration */ + static int config(struct vf_instance_s* vf, int width, int height, int d_width, int d_height, unsigned int flags, unsigned int outfmt){
participants (1)
-
Arpi of Ize