[Mplayer-cvslog] CVS: main/libmpcodecs dec_video.c,1.145,1.146 vd.c,1.46,1.47
Alex Beregszaszi
alex at mplayerhq.hu
Wed Aug 28 23:32:34 CEST 2002
- Previous message: [Mplayer-cvslog] CVS: main/DOCS mplayer.1,1.215,1.216
- Next message: [Mplayer-cvslog] CVS: main/libvo video_out.h,1.40,1.41 video_out_internal.h,1.11,1.12 vo_3dfx.c,1.14,1.15 vo_aa.c,1.31,1.32 vo_dga.c,1.45,1.46 vo_directfb.c,1.22,1.23 vo_dxr2.c,1.7,1.8 vo_dxr3.c,1.95,1.96 vo_fbdev.c,1.67,1.68 vo_fsdga.c,1.12,1.13 vo_ggi.c,1.24,1.25 vo_gif89a.c,1.3,1.4 vo_gl.c,1.29,1.30 vo_gl2.c,1.22,1.23 vo_jpeg.c,1.4,1.5 vo_md5.c,1.12,1.13 vo_mga.c,1.31,1.32 vo_mpegpes.c,1.33,1.34 vo_null.c,1.9,1.10 vo_odivx.c,1.12,1.13 vo_pgm.c,1.12,1.13 vo_png.c,1.17,1.18 vo_sdl.c,1.89,1.90 vo_svga.c,1.49,1.50 vo_syncfb.c,1.12,1.13 vo_tdfxfb.c,1.16,1.17 vo_vesa.c,1.76,1.77 vo_x11.c,1.115,1.116 vo_xmga.c,1.75,1.76 vo_xv.c,1.114,1.115 vo_xvidix.c,1.50,1.51 vo_yuv4mpeg.c,1.10,1.11 vo_zr.c,1.18,1.19 vosub_vidix.c,1.52,1.53 vosub_vidix.h,1.8,1.9
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var/tmp.root/cvs-serv14174/libmpcodecs
Modified Files:
dec_video.c vd.c
Log Message:
finally removed query_vaa, bes_da and vo_tune_info - the obsoleted libvo api
Index: dec_video.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/dec_video.c,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- dec_video.c 13 Aug 2002 16:04:16 -0000 1.145
+++ dec_video.c 28 Aug 2002 21:32:31 -0000 1.146
@@ -34,7 +34,6 @@
extern double video_time_usage;
extern double vout_time_usage;
-extern vo_vaa_t vo_vaa;
#include "postproc/postprocess.h"
Index: vd.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- vd.c 13 Aug 2002 23:24:20 -0000 1.46
+++ vd.c 28 Aug 2002 21:32:31 -0000 1.47
@@ -245,18 +245,17 @@
}
// Time to config libvo!
- mp_msg(MSGT_CPLAYER,MSGL_V,"video_out->init(%dx%d->%dx%d,flags=%d,'%s',0x%X)\n",
+ mp_msg(MSGT_CPLAYER,MSGL_V,"VO Config (%dx%d->%dx%d,flags=%d,'%s',0x%X)\n",
sh->disp_w,sh->disp_h,
screen_size_x,screen_size_y,
fullscreen|(vidmode<<1)|(softzoom<<2)|(flip<<3),
"MPlayer",out_fmt);
-// memset(&vtune,0,sizeof(vo_tune_info_t));
if(vf->config(vf,sh->disp_w,sh->disp_h,
screen_size_x,screen_size_y,
fullscreen|(vidmode<<1)|(softzoom<<2)|(flip<<3),
out_fmt)==0){
-// "MPlayer",out_fmt,&vtune)){
+// "MPlayer",out_fmt)){
mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_CannotInitVO);
sh->vf_inited=-1;
return 0;
- Previous message: [Mplayer-cvslog] CVS: main/DOCS mplayer.1,1.215,1.216
- Next message: [Mplayer-cvslog] CVS: main/libvo video_out.h,1.40,1.41 video_out_internal.h,1.11,1.12 vo_3dfx.c,1.14,1.15 vo_aa.c,1.31,1.32 vo_dga.c,1.45,1.46 vo_directfb.c,1.22,1.23 vo_dxr2.c,1.7,1.8 vo_dxr3.c,1.95,1.96 vo_fbdev.c,1.67,1.68 vo_fsdga.c,1.12,1.13 vo_ggi.c,1.24,1.25 vo_gif89a.c,1.3,1.4 vo_gl.c,1.29,1.30 vo_gl2.c,1.22,1.23 vo_jpeg.c,1.4,1.5 vo_md5.c,1.12,1.13 vo_mga.c,1.31,1.32 vo_mpegpes.c,1.33,1.34 vo_null.c,1.9,1.10 vo_odivx.c,1.12,1.13 vo_pgm.c,1.12,1.13 vo_png.c,1.17,1.18 vo_sdl.c,1.89,1.90 vo_svga.c,1.49,1.50 vo_syncfb.c,1.12,1.13 vo_tdfxfb.c,1.16,1.17 vo_vesa.c,1.76,1.77 vo_x11.c,1.115,1.116 vo_xmga.c,1.75,1.76 vo_xv.c,1.114,1.115 vo_xvidix.c,1.50,1.51 vo_yuv4mpeg.c,1.10,1.11 vo_zr.c,1.18,1.19 vosub_vidix.c,1.52,1.53 vosub_vidix.h,1.8,1.9
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list