annotate libmpcodecs/vd.c @ 5077:2000ba19b606

temp workaround for mencoder
author arpi
date Thu, 14 Mar 2002 23:58:46 +0000
parents 37e15b16e38d
children cff03e88d331
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
1 #include <stdio.h>
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
2 #include <stdlib.h>
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
3 #include <string.h>
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
4
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
5 #include "config.h"
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
6 #include "mp_msg.h"
5075
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
7 #include "help_mp.h"
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
8
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
9 #ifdef HAVE_MALLOC_H
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
10 #include <malloc.h>
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
11 #endif
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
12
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
13 #include "codec-cfg.h"
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
14 //#include "mp_image.h"
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
15
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
16 #include "../libvo/img_format.h"
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
17
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
18 #include "stream.h"
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
19 #include "demuxer.h"
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
20 #include "stheader.h"
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
21
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
22 #include "vd.h"
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
23 //#include "vd_internal.h"
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
24
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
25 extern vd_functions_t mpcodecs_vd_null;
4885
fbafa2f216f5 cinepak added
arpi
parents: 4884
diff changeset
26 extern vd_functions_t mpcodecs_vd_cinepak;
4915
f6990fad0ab3 Qt RPZA decoder interface by Roberto Togni <rtogni@bresciaonline.it>
arpi
parents: 4899
diff changeset
27 extern vd_functions_t mpcodecs_vd_qtrpza;
4951
e5bd91881646 vd_ffmpeg added, handling of EXPORT imgtype changed
arpi
parents: 4915
diff changeset
28 extern vd_functions_t mpcodecs_vd_ffmpeg;
4958
ca6f6b35baf4 vd_dshow added
arpi
parents: 4951
diff changeset
29 extern vd_functions_t mpcodecs_vd_dshow;
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
30 extern vd_functions_t mpcodecs_vd_vfw;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
31 extern vd_functions_t mpcodecs_vd_vfwex;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
32 extern vd_functions_t mpcodecs_vd_odivx;
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
33 extern vd_functions_t mpcodecs_vd_divx4;
4969
db86fcf25ede xanim, raw, rle added
arpi
parents: 4968
diff changeset
34 extern vd_functions_t mpcodecs_vd_raw;
db86fcf25ede xanim, raw, rle added
arpi
parents: 4968
diff changeset
35 extern vd_functions_t mpcodecs_vd_xanim;
db86fcf25ede xanim, raw, rle added
arpi
parents: 4968
diff changeset
36 extern vd_functions_t mpcodecs_vd_rle;
4987
f412b0110524 fli and msvideo1 added
arpi
parents: 4976
diff changeset
37 extern vd_functions_t mpcodecs_vd_msvidc;
f412b0110524 fli and msvideo1 added
arpi
parents: 4976
diff changeset
38 extern vd_functions_t mpcodecs_vd_fli;
4989
11d8bf468334 cyuv, nuv, qtrle, qtsmc, roq added
arpi
parents: 4987
diff changeset
39 extern vd_functions_t mpcodecs_vd_qtrle;
11d8bf468334 cyuv, nuv, qtrle, qtsmc, roq added
arpi
parents: 4987
diff changeset
40 extern vd_functions_t mpcodecs_vd_qtsmc;
11d8bf468334 cyuv, nuv, qtrle, qtsmc, roq added
arpi
parents: 4987
diff changeset
41 extern vd_functions_t mpcodecs_vd_roqvideo;
11d8bf468334 cyuv, nuv, qtrle, qtsmc, roq added
arpi
parents: 4987
diff changeset
42 extern vd_functions_t mpcodecs_vd_cyuv;
11d8bf468334 cyuv, nuv, qtrle, qtsmc, roq added
arpi
parents: 4987
diff changeset
43 extern vd_functions_t mpcodecs_vd_nuv;
4998
c32191b02a66 mpng, libmpeg2 added, none of them finished :(
arpi
parents: 4989
diff changeset
44 extern vd_functions_t mpcodecs_vd_mpng;
5029
ef8a43b74075 Add IJPG decoder.
pontscho
parents: 5004
diff changeset
45 extern vd_functions_t mpcodecs_vd_ijpg;
4998
c32191b02a66 mpng, libmpeg2 added, none of them finished :(
arpi
parents: 4989
diff changeset
46 extern vd_functions_t mpcodecs_vd_libmpeg2;
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
47
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
48 vd_functions_t* mpcodecs_vd_drivers[] = {
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
49 &mpcodecs_vd_null,
4884
c758cf9360d9 cinepak added
arpi
parents: 4878
diff changeset
50 &mpcodecs_vd_cinepak,
4915
f6990fad0ab3 Qt RPZA decoder interface by Roberto Togni <rtogni@bresciaonline.it>
arpi
parents: 4899
diff changeset
51 &mpcodecs_vd_qtrpza,
4951
e5bd91881646 vd_ffmpeg added, handling of EXPORT imgtype changed
arpi
parents: 4915
diff changeset
52 #ifdef USE_LIBAVCODEC
e5bd91881646 vd_ffmpeg added, handling of EXPORT imgtype changed
arpi
parents: 4915
diff changeset
53 &mpcodecs_vd_ffmpeg,
e5bd91881646 vd_ffmpeg added, handling of EXPORT imgtype changed
arpi
parents: 4915
diff changeset
54 #endif
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
55 #ifdef USE_WIN32DLL
4958
ca6f6b35baf4 vd_dshow added
arpi
parents: 4951
diff changeset
56 #ifdef USE_DIRECTSHOW
ca6f6b35baf4 vd_dshow added
arpi
parents: 4951
diff changeset
57 &mpcodecs_vd_dshow,
ca6f6b35baf4 vd_dshow added
arpi
parents: 4951
diff changeset
58 #endif
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
59 &mpcodecs_vd_vfw,
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
60 &mpcodecs_vd_vfwex,
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
61 #endif
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
62 #ifdef USE_DIVX
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
63 &mpcodecs_vd_odivx,
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
64 #ifdef NEW_DECORE
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
65 &mpcodecs_vd_divx4,
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
66 #endif
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
67 #endif
4969
db86fcf25ede xanim, raw, rle added
arpi
parents: 4968
diff changeset
68 &mpcodecs_vd_raw,
db86fcf25ede xanim, raw, rle added
arpi
parents: 4968
diff changeset
69 &mpcodecs_vd_rle,
4987
f412b0110524 fli and msvideo1 added
arpi
parents: 4976
diff changeset
70 &mpcodecs_vd_msvidc,
f412b0110524 fli and msvideo1 added
arpi
parents: 4976
diff changeset
71 &mpcodecs_vd_fli,
4989
11d8bf468334 cyuv, nuv, qtrle, qtsmc, roq added
arpi
parents: 4987
diff changeset
72 &mpcodecs_vd_qtrle,
11d8bf468334 cyuv, nuv, qtrle, qtsmc, roq added
arpi
parents: 4987
diff changeset
73 &mpcodecs_vd_qtsmc,
11d8bf468334 cyuv, nuv, qtrle, qtsmc, roq added
arpi
parents: 4987
diff changeset
74 &mpcodecs_vd_roqvideo,
11d8bf468334 cyuv, nuv, qtrle, qtsmc, roq added
arpi
parents: 4987
diff changeset
75 &mpcodecs_vd_cyuv,
11d8bf468334 cyuv, nuv, qtrle, qtsmc, roq added
arpi
parents: 4987
diff changeset
76 &mpcodecs_vd_nuv,
4969
db86fcf25ede xanim, raw, rle added
arpi
parents: 4968
diff changeset
77 #ifdef USE_XANIM
db86fcf25ede xanim, raw, rle added
arpi
parents: 4968
diff changeset
78 &mpcodecs_vd_xanim,
db86fcf25ede xanim, raw, rle added
arpi
parents: 4968
diff changeset
79 #endif
4998
c32191b02a66 mpng, libmpeg2 added, none of them finished :(
arpi
parents: 4989
diff changeset
80 #ifdef HAVE_PNG
c32191b02a66 mpng, libmpeg2 added, none of them finished :(
arpi
parents: 4989
diff changeset
81 &mpcodecs_vd_mpng,
c32191b02a66 mpng, libmpeg2 added, none of them finished :(
arpi
parents: 4989
diff changeset
82 #endif
5029
ef8a43b74075 Add IJPG decoder.
pontscho
parents: 5004
diff changeset
83 #ifdef HAVE_JPEG
ef8a43b74075 Add IJPG decoder.
pontscho
parents: 5004
diff changeset
84 &mpcodecs_vd_ijpg,
ef8a43b74075 Add IJPG decoder.
pontscho
parents: 5004
diff changeset
85 #endif
4998
c32191b02a66 mpng, libmpeg2 added, none of them finished :(
arpi
parents: 4989
diff changeset
86 &mpcodecs_vd_libmpeg2,
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
87 NULL
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
88 };
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
89
4971
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
90 #include "libvo/video_out.h"
4976
0780634e64b5 direct rendering can be disabled -vaa_nodr
arpi
parents: 4971
diff changeset
91 extern int vaa_use_dr;
4971
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
92
5075
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
93 // libvo opts:
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
94 int fullscreen=0;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
95 int vidmode=0;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
96 int softzoom=0;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
97 int flip=-1;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
98 int opt_screen_size_x=0;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
99 int opt_screen_size_y=0;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
100 int screen_size_xy=0;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
101 float movie_aspect=-1.0;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
102 int vo_flags=0;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
103
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
104 static vo_tune_info_t vtune;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
105
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
106 int mpcodecs_config_vo(sh_video_t *sh, int w, int h, unsigned int preferred_outfmt){
5075
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
107 int i;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
108 unsigned int out_fmt=0;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
109 int screen_size_x=0;//SCREEN_SIZE_X;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
110 int screen_size_y=0;//SCREEN_SIZE_Y;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
111 vo_functions_t* video_out=sh->video_out;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
112
5004
ce6b500c22ae vo_config request printf
arpi
parents: 4998
diff changeset
113 mp_msg(MSGT_DECVIDEO,MSGL_INFO,"VDec: vo config request - %d x %d, %s \n",
ce6b500c22ae vo_config request printf
arpi
parents: 4998
diff changeset
114 w,h,vo_format_name(preferred_outfmt));
5075
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
115
5077
2000ba19b606 temp workaround for mencoder
arpi
parents: 5075
diff changeset
116 if(!video_out) return 1; // temp hack
2000ba19b606 temp workaround for mencoder
arpi
parents: 5075
diff changeset
117
5075
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
118 // check if libvo and codec has common outfmt:
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
119 for(i=0;i<CODECS_MAX_OUTFMT;i++){
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
120 out_fmt=sh->codec->outfmt[i];
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
121 if(out_fmt==(signed int)0xFFFFFFFF) continue;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
122 vo_flags=video_out->control(VOCTRL_QUERY_FORMAT, &out_fmt);
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
123 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"vo_debug: query(%s) returned 0x%X\n",vo_format_name(out_fmt),vo_flags);
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
124 // TODO: check (query) if codec really support this outfmt...
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
125 if(vo_flags) break;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
126 }
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
127 if(i>=CODECS_MAX_OUTFMT){
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
128 // TODO: no match - we should use conversion...
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
129 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_VOincompCodec);
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
130 return 0; // failed
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
131 }
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
132 sh->outfmtidx=i;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
133
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
134 // autodetect flipping
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
135 if(flip==-1){
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
136 flip=0;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
137 if(sh->codec->outflags[i]&CODECS_FLAG_FLIP)
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
138 if(!(sh->codec->outflags[i]&CODECS_FLAG_NOFLIP))
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
139 flip=1;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
140 }
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
141
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
142 // time to do aspect ratio corrections...
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
143
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
144 if(movie_aspect>-1.0) sh->aspect = movie_aspect; // cmdline overrides autodetect
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
145 // if(!sh->aspect) sh->aspect=1.0;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
146 screen_size_x = opt_screen_size_x;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
147 screen_size_y = opt_screen_size_y;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
148 if(screen_size_xy||screen_size_x||screen_size_y){
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
149 if(screen_size_xy>0){
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
150 if(screen_size_xy<=8){
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
151 screen_size_x=screen_size_xy*sh->disp_w;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
152 screen_size_y=screen_size_xy*sh->disp_h;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
153 } else {
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
154 screen_size_x=screen_size_xy;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
155 screen_size_y=screen_size_xy*sh->disp_h/sh->disp_w;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
156 }
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
157 } else if(!vidmode){
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
158 if(!screen_size_x) screen_size_x=SCREEN_SIZE_X;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
159 if(!screen_size_y) screen_size_y=SCREEN_SIZE_Y;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
160 if(screen_size_x<=8) screen_size_x*=sh->disp_w;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
161 if(screen_size_y<=8) screen_size_y*=sh->disp_h;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
162 }
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
163 } else {
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
164 // check source format aspect, calculate prescale ::atmos
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
165 screen_size_x=sh->disp_w;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
166 screen_size_y=sh->disp_h;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
167 if(sh->aspect>0.01){
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
168 mp_msg(MSGT_CPLAYER,MSGL_INFO,"Movie-Aspect is %.2f:1 - prescaling to correct movie aspect.\n",
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
169 sh->aspect);
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
170 screen_size_x=(int)((float)sh->disp_h*sh->aspect);
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
171 screen_size_x+=screen_size_x%2; // round
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
172 if(screen_size_x<sh->disp_w){
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
173 screen_size_x=sh->disp_w;
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
174 screen_size_y=(int)((float)sh->disp_w*(1.0/sh->aspect));
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
175 screen_size_y+=screen_size_y%2; // round
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
176 }
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
177 } else {
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
178 mp_msg(MSGT_CPLAYER,MSGL_INFO,"Movie-Aspect is undefined - no prescaling applied.\n");
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
179 }
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
180 }
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
181
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
182 // Time to config libvo!
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
183 mp_msg(MSGT_CPLAYER,MSGL_V,"video_out->init(%dx%d->%dx%d,flags=%d,'%s',0x%X)\n",
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
184 sh->disp_w,sh->disp_h,
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
185 screen_size_x,screen_size_y,
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
186 fullscreen|(vidmode<<1)|(softzoom<<2)|(flip<<3),
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
187 "MPlayer",out_fmt);
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
188
5077
2000ba19b606 temp workaround for mencoder
arpi
parents: 5075
diff changeset
189 memset(&vtune,0,sizeof(vo_tune_info_t));
5075
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
190 if(video_out->config(sh->disp_w,sh->disp_h,
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
191 screen_size_x,screen_size_y,
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
192 fullscreen|(vidmode<<1)|(softzoom<<2)|(flip<<3),
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
193 "MPlayer",out_fmt,&vtune)){
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
194 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CannotInitVO);
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
195 return 0; // exit_player(MSGTR_Exit_error);
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
196 }
37e15b16e38d libvo init moved to libmpcodecs
arpi
parents: 5029
diff changeset
197
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
198 return 1;
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
199 }
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
200
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
201 static mp_image_t* static_images[2];
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
202 static mp_image_t* temp_images[1];
4951
e5bd91881646 vd_ffmpeg added, handling of EXPORT imgtype changed
arpi
parents: 4915
diff changeset
203 static mp_image_t* export_images[1];
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
204 static int static_idx=0;
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
205
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
206 // mp_imgtype: buffering type, see mp_image.h
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
207 // mp_imgflag: buffer requirements (read/write, preserve, stride limits), see mp_image.h
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
208 // returns NULL or allocated mp_image_t*
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
209 // Note: buffer allocation may be moved to mpcodecs_config_vo() later...
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
210 mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, int w, int h){
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
211 mp_image_t* mpi=NULL;
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
212 int w2=(mp_imgflag&MP_IMGFLAG_ACCEPT_STRIDE)?((w+15)&(~15)):w;
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
213 // Note: we should call libvo first to check if it supports direct rendering
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
214 // and if not, then fallback to software buffers:
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
215 switch(mp_imgtype){
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
216 case MP_IMGTYPE_EXPORT:
4951
e5bd91881646 vd_ffmpeg added, handling of EXPORT imgtype changed
arpi
parents: 4915
diff changeset
217 // mpi=new_mp_image(w,h);
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
218 if(!export_images[0]) export_images[0]=new_mp_image(w2,h);
4951
e5bd91881646 vd_ffmpeg added, handling of EXPORT imgtype changed
arpi
parents: 4915
diff changeset
219 mpi=export_images[0];
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
220 break;
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
221 case MP_IMGTYPE_STATIC:
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
222 if(!static_images[0]) static_images[0]=new_mp_image(w2,h);
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
223 mpi=static_images[0];
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
224 break;
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
225 case MP_IMGTYPE_TEMP:
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
226 if(!temp_images[0]) temp_images[0]=new_mp_image(w2,h);
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
227 mpi=temp_images[0];
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
228 break;
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
229 case MP_IMGTYPE_IPB:
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
230 if(!(mp_imgflag&MP_IMGFLAG_READABLE)){ // B frame:
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
231 if(!temp_images[0]) temp_images[0]=new_mp_image(w2,h);
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
232 mpi=temp_images[0];
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
233 break;
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
234 }
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
235 case MP_IMGTYPE_IP:
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
236 if(!static_images[static_idx]) static_images[static_idx]=new_mp_image(w2,h);
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
237 mpi=static_images[static_idx];
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
238 static_idx^=1;
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
239 break;
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
240 }
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
241 if(mpi){
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
242 mpi->type=mp_imgtype;
4971
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
243 mpi->flags&=~(MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE|MP_IMGFLAG_DIRECT);
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
244 mpi->flags|=mp_imgflag&(MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE|MP_IMGFLAG_ACCEPT_STRIDE|MP_IMGFLAG_ACCEPT_WIDTH|MP_IMGFLAG_ALIGNED_STRIDE|MP_IMGFLAG_DRAW_CALLBACK);
4968
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
245 if((mpi->width!=w2 || mpi->height!=h) && !(mpi->flags&MP_IMGFLAG_DIRECT)){
236b06410b03 vfw, vfwex, odivx, divx4 added
arpi
parents: 4958
diff changeset
246 mpi->width=w2;
4951
e5bd91881646 vd_ffmpeg added, handling of EXPORT imgtype changed
arpi
parents: 4915
diff changeset
247 mpi->height=h;
e5bd91881646 vd_ffmpeg added, handling of EXPORT imgtype changed
arpi
parents: 4915
diff changeset
248 if(mpi->flags&MP_IMGFLAG_ALLOCATED){
e5bd91881646 vd_ffmpeg added, handling of EXPORT imgtype changed
arpi
parents: 4915
diff changeset
249 // need to re-allocate buffer memory:
e5bd91881646 vd_ffmpeg added, handling of EXPORT imgtype changed
arpi
parents: 4915
diff changeset
250 free(mpi->planes[0]);
e5bd91881646 vd_ffmpeg added, handling of EXPORT imgtype changed
arpi
parents: 4915
diff changeset
251 mpi->flags&=~MP_IMGFLAG_ALLOCATED;
e5bd91881646 vd_ffmpeg added, handling of EXPORT imgtype changed
arpi
parents: 4915
diff changeset
252 }
e5bd91881646 vd_ffmpeg added, handling of EXPORT imgtype changed
arpi
parents: 4915
diff changeset
253 }
4971
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
254 if(!mpi->bpp) mp_image_setfmt(mpi,sh->codec->outfmt[sh->outfmtidx]);
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
255 if(!(mpi->flags&MP_IMGFLAG_ALLOCATED) && mpi->type>MP_IMGTYPE_EXPORT){
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
256
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
257 // check libvo first!
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
258 vo_functions_t* vo=sh->video_out;
4976
0780634e64b5 direct rendering can be disabled -vaa_nodr
arpi
parents: 4971
diff changeset
259 if(vo && vaa_use_dr) vo->control(VOCTRL_GET_IMAGE,mpi);
4971
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
260
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
261 if(!(mpi->flags&MP_IMGFLAG_DIRECT)){
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
262 // non-direct and not yet allocaed image. allocate it!
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
263 mpi->planes[0]=memalign(64, mpi->bpp*mpi->width*mpi->height/8);
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
264 if(mpi->flags&MP_IMGFLAG_PLANAR){
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
265 // YV12/I420. feel free to add other planar formats here...
4899
c84d841ef43b fixed stride for packed formats, more detailed printf at image allocation
arpi
parents: 4885
diff changeset
266 if(!mpi->stride[0]) mpi->stride[0]=mpi->width;
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
267 if(!mpi->stride[1]) mpi->stride[1]=mpi->stride[2]=mpi->width/2;
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
268 mpi->planes[1]=mpi->planes[0]+mpi->width*mpi->height;
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
269 mpi->planes[2]=mpi->planes[1]+mpi->width*mpi->height/4;
4899
c84d841ef43b fixed stride for packed formats, more detailed printf at image allocation
arpi
parents: 4885
diff changeset
270 } else {
c84d841ef43b fixed stride for packed formats, more detailed printf at image allocation
arpi
parents: 4885
diff changeset
271 if(!mpi->stride[0]) mpi->stride[0]=mpi->width*mpi->bpp/8;
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
272 }
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
273 mpi->flags|=MP_IMGFLAG_ALLOCATED;
4971
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
274 }
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
275 if(!(mpi->flags&MP_IMGFLAG_TYPE_DISPLAYED)){
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
276 mp_msg(MSGT_DECVIDEO,MSGL_INFO,"*** %s mp_image_t, %dx%dx%dbpp %s %s, %d bytes\n",
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
277 (mpi->flags&MP_IMGFLAG_DIRECT)?"Direct Rendering":"Allocating",
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
278 mpi->width,mpi->height,mpi->bpp,
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
279 (mpi->flags&MP_IMGFLAG_YUV)?"YUV":"RGB",
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
280 (mpi->flags&MP_IMGFLAG_PLANAR)?"planar":"packed",
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
281 mpi->bpp*mpi->width*mpi->height/8);
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
282 mpi->flags|=MP_IMGFLAG_TYPE_DISPLAYED;
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
283 }
fa002f25631e direct rendering support
arpi
parents: 4969
diff changeset
284
4878
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
285 }
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
286 }
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
287 return mpi;
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
288 }
eff8a76e515f libmpcodecs core - initial version
arpi
parents:
diff changeset
289