Mercurial > mplayer.hg
annotate libmpcodecs/vd.c @ 5881:3c5ee5419838
open w/O_CREAT requires a third argument, mode!
author | rfelker |
---|---|
date | Sun, 28 Apr 2002 02:24:05 +0000 |
parents | b21cc9652f46 |
children | 97abdfbbeff0 |
rev | line source |
---|---|
4878 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 | |
5 #include "config.h" | |
6 #include "mp_msg.h" | |
5075 | 7 #include "help_mp.h" |
4878 | 8 |
9 #ifdef HAVE_MALLOC_H | |
10 #include <malloc.h> | |
11 #endif | |
12 | |
13 #include "codec-cfg.h" | |
14 //#include "mp_image.h" | |
15 | |
5607 | 16 #include "img_format.h" |
4878 | 17 |
18 #include "stream.h" | |
19 #include "demuxer.h" | |
20 #include "stheader.h" | |
21 | |
22 #include "vd.h" | |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
23 #include "vf.h" |
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
24 |
4878 | 25 //#include "vd_internal.h" |
26 | |
27 extern vd_functions_t mpcodecs_vd_null; | |
4885 | 28 extern vd_functions_t mpcodecs_vd_cinepak; |
4915
f6990fad0ab3
Qt RPZA decoder interface by Roberto Togni <rtogni@bresciaonline.it>
arpi
parents:
4899
diff
changeset
|
29 extern vd_functions_t mpcodecs_vd_qtrpza; |
4951 | 30 extern vd_functions_t mpcodecs_vd_ffmpeg; |
4958 | 31 extern vd_functions_t mpcodecs_vd_dshow; |
4968 | 32 extern vd_functions_t mpcodecs_vd_vfw; |
33 extern vd_functions_t mpcodecs_vd_vfwex; | |
34 extern vd_functions_t mpcodecs_vd_odivx; | |
35 extern vd_functions_t mpcodecs_vd_divx4; | |
4969 | 36 extern vd_functions_t mpcodecs_vd_raw; |
37 extern vd_functions_t mpcodecs_vd_xanim; | |
5193
abea2deab4d6
MPlayer now has a Microsoft RLE decoder to call its own...only supports
melanson
parents:
5180
diff
changeset
|
38 extern vd_functions_t mpcodecs_vd_msrle; |
4987 | 39 extern vd_functions_t mpcodecs_vd_msvidc; |
40 extern vd_functions_t mpcodecs_vd_fli; | |
4989 | 41 extern vd_functions_t mpcodecs_vd_qtrle; |
42 extern vd_functions_t mpcodecs_vd_qtsmc; | |
43 extern vd_functions_t mpcodecs_vd_roqvideo; | |
44 extern vd_functions_t mpcodecs_vd_cyuv; | |
45 extern vd_functions_t mpcodecs_vd_nuv; | |
4998 | 46 extern vd_functions_t mpcodecs_vd_mpng; |
5029 | 47 extern vd_functions_t mpcodecs_vd_ijpg; |
4998 | 48 extern vd_functions_t mpcodecs_vd_libmpeg2; |
5235
3e04fd1074d3
added HuffYUV support, courtesy of Roberto Togni <rtogni@bresciaonline.it>
melanson
parents:
5224
diff
changeset
|
49 extern vd_functions_t mpcodecs_vd_huffyuv; |
5264 | 50 extern vd_functions_t mpcodecs_vd_zlib; |
5476 | 51 extern vd_functions_t mpcodecs_vd_mpegpes; |
4878 | 52 |
53 vd_functions_t* mpcodecs_vd_drivers[] = { | |
54 &mpcodecs_vd_null, | |
4884 | 55 &mpcodecs_vd_cinepak, |
4915
f6990fad0ab3
Qt RPZA decoder interface by Roberto Togni <rtogni@bresciaonline.it>
arpi
parents:
4899
diff
changeset
|
56 &mpcodecs_vd_qtrpza, |
4951 | 57 #ifdef USE_LIBAVCODEC |
58 &mpcodecs_vd_ffmpeg, | |
59 #endif | |
4968 | 60 #ifdef USE_WIN32DLL |
4958 | 61 #ifdef USE_DIRECTSHOW |
62 &mpcodecs_vd_dshow, | |
63 #endif | |
4968 | 64 &mpcodecs_vd_vfw, |
65 &mpcodecs_vd_vfwex, | |
66 #endif | |
67 #ifdef USE_DIVX | |
68 &mpcodecs_vd_odivx, | |
69 #ifdef NEW_DECORE | |
70 &mpcodecs_vd_divx4, | |
71 #endif | |
72 #endif | |
4969 | 73 &mpcodecs_vd_raw, |
5193
abea2deab4d6
MPlayer now has a Microsoft RLE decoder to call its own...only supports
melanson
parents:
5180
diff
changeset
|
74 &mpcodecs_vd_msrle, |
4987 | 75 &mpcodecs_vd_msvidc, |
76 &mpcodecs_vd_fli, | |
4989 | 77 &mpcodecs_vd_qtrle, |
78 &mpcodecs_vd_qtsmc, | |
79 &mpcodecs_vd_roqvideo, | |
80 &mpcodecs_vd_cyuv, | |
81 &mpcodecs_vd_nuv, | |
4969 | 82 #ifdef USE_XANIM |
83 &mpcodecs_vd_xanim, | |
84 #endif | |
4998 | 85 #ifdef HAVE_PNG |
86 &mpcodecs_vd_mpng, | |
87 #endif | |
5029 | 88 #ifdef HAVE_JPEG |
89 &mpcodecs_vd_ijpg, | |
90 #endif | |
4998 | 91 &mpcodecs_vd_libmpeg2, |
5235
3e04fd1074d3
added HuffYUV support, courtesy of Roberto Togni <rtogni@bresciaonline.it>
melanson
parents:
5224
diff
changeset
|
92 &mpcodecs_vd_huffyuv, |
5264 | 93 #ifdef HAVE_ZLIB |
94 &mpcodecs_vd_zlib, | |
95 #endif | |
5476 | 96 &mpcodecs_vd_mpegpes, |
4878 | 97 NULL |
98 }; | |
99 | |
4971 | 100 #include "libvo/video_out.h" |
101 | |
5075 | 102 // libvo opts: |
103 int fullscreen=0; | |
104 int vidmode=0; | |
105 int softzoom=0; | |
106 int flip=-1; | |
107 int opt_screen_size_x=0; | |
108 int opt_screen_size_y=0; | |
109 int screen_size_xy=0; | |
110 float movie_aspect=-1.0; | |
111 int vo_flags=0; | |
5483 | 112 int vd_use_slices=1; |
5075 | 113 |
5180 | 114 extern vd_functions_t* mpvdec; // FIXME! |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
115 extern int divx_quality; |
5180 | 116 |
4878 | 117 int mpcodecs_config_vo(sh_video_t *sh, int w, int h, unsigned int preferred_outfmt){ |
5131
cff03e88d331
prefer outfmt with no conversion (see vo's query flags)
arpi
parents:
5077
diff
changeset
|
118 int i,j; |
5075 | 119 unsigned int out_fmt=0; |
120 int screen_size_x=0;//SCREEN_SIZE_X; | |
121 int screen_size_y=0;//SCREEN_SIZE_Y; | |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
122 // vo_functions_t* video_out=sh->video_out; |
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
123 vf_instance_t* vf=sh->vfilter; |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
124 unsigned int fmtlist[CODECS_MAX_OUTFMT+1]; |
5075 | 125 |
5365
b87743434e1f
Issue a warning in VDec if disp_w and disp_h weren't set by codec and try workaround.
atmos4
parents:
5315
diff
changeset
|
126 #if 1 |
b87743434e1f
Issue a warning in VDec if disp_w and disp_h weren't set by codec and try workaround.
atmos4
parents:
5315
diff
changeset
|
127 if(!(sh->disp_w && sh->disp_h)) |
b87743434e1f
Issue a warning in VDec if disp_w and disp_h weren't set by codec and try workaround.
atmos4
parents:
5315
diff
changeset
|
128 mp_msg(MSGT_DECVIDEO,MSGL_WARN, |
b87743434e1f
Issue a warning in VDec if disp_w and disp_h weren't set by codec and try workaround.
atmos4
parents:
5315
diff
changeset
|
129 "VDec: codec didn't set sh->disp_w and sh->disp_h, trying to workaround!\n"); |
b87743434e1f
Issue a warning in VDec if disp_w and disp_h weren't set by codec and try workaround.
atmos4
parents:
5315
diff
changeset
|
130 /* XXX: HACK, if sh->disp_* aren't set, |
b87743434e1f
Issue a warning in VDec if disp_w and disp_h weren't set by codec and try workaround.
atmos4
parents:
5315
diff
changeset
|
131 * but we have w and h, set them :: atmos */ |
b87743434e1f
Issue a warning in VDec if disp_w and disp_h weren't set by codec and try workaround.
atmos4
parents:
5315
diff
changeset
|
132 if(!sh->disp_w && w) |
b87743434e1f
Issue a warning in VDec if disp_w and disp_h weren't set by codec and try workaround.
atmos4
parents:
5315
diff
changeset
|
133 sh->disp_w=w; |
b87743434e1f
Issue a warning in VDec if disp_w and disp_h weren't set by codec and try workaround.
atmos4
parents:
5315
diff
changeset
|
134 if(!sh->disp_h && h) |
b87743434e1f
Issue a warning in VDec if disp_w and disp_h weren't set by codec and try workaround.
atmos4
parents:
5315
diff
changeset
|
135 sh->disp_h=h; |
b87743434e1f
Issue a warning in VDec if disp_w and disp_h weren't set by codec and try workaround.
atmos4
parents:
5315
diff
changeset
|
136 #endif |
b87743434e1f
Issue a warning in VDec if disp_w and disp_h weren't set by codec and try workaround.
atmos4
parents:
5315
diff
changeset
|
137 |
5004 | 138 mp_msg(MSGT_DECVIDEO,MSGL_INFO,"VDec: vo config request - %d x %d, %s \n", |
139 w,h,vo_format_name(preferred_outfmt)); | |
5075 | 140 |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
141 if(!vf) return 1; // temp hack |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
142 |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
143 if(get_video_quality_max(sh)<=0 && divx_quality){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
144 // user wants postprocess but no pp filter yet: |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
145 sh->vfilter=vf=vf_open_filter(vf,"pp",NULL); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
146 } |
5077 | 147 |
5131
cff03e88d331
prefer outfmt with no conversion (see vo's query flags)
arpi
parents:
5077
diff
changeset
|
148 // check if libvo and codec has common outfmt (no conversion): |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
149 csp_again: |
5131
cff03e88d331
prefer outfmt with no conversion (see vo's query flags)
arpi
parents:
5077
diff
changeset
|
150 j=-1; |
5075 | 151 for(i=0;i<CODECS_MAX_OUTFMT;i++){ |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
152 int flags; |
5075 | 153 out_fmt=sh->codec->outfmt[i]; |
154 if(out_fmt==(signed int)0xFFFFFFFF) continue; | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
155 flags=vf->query_format(vf,out_fmt); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
156 mp_msg(MSGT_CPLAYER,MSGL_V,"vo_debug: query(%s) returned 0x%X (i=%d) \n",vo_format_name(out_fmt),flags,i); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
157 if((flags&2) || (flags && j<0)){ |
5180 | 158 // check (query) if codec really support this outfmt... |
159 if(mpvdec->control(sh,VDCTRL_QUERY_FORMAT,&out_fmt)==CONTROL_FALSE) | |
160 continue; | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
161 j=i; vo_flags=flags; if(flags&2) break; |
5180 | 162 } |
5075 | 163 } |
5131
cff03e88d331
prefer outfmt with no conversion (see vo's query flags)
arpi
parents:
5077
diff
changeset
|
164 if(j<0){ |
5075 | 165 // TODO: no match - we should use conversion... |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
166 if(strcmp(vf->info->name,"scale")){ |
5710 | 167 mp_msg(MSGT_DECVIDEO,MSGL_INFO,"Couldn't find matching colorspace - retrying with -vop scale...\n"); |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
168 vf=vf_open_filter(vf,"scale",NULL); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
169 goto csp_again; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
170 } |
5075 | 171 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_VOincompCodec); |
172 return 0; // failed | |
173 } | |
5131
cff03e88d331
prefer outfmt with no conversion (see vo's query flags)
arpi
parents:
5077
diff
changeset
|
174 out_fmt=sh->codec->outfmt[j]; |
cff03e88d331
prefer outfmt with no conversion (see vo's query flags)
arpi
parents:
5077
diff
changeset
|
175 sh->outfmtidx=j; |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
176 sh->vfilter=vf; |
5075 | 177 |
178 // autodetect flipping | |
179 if(flip==-1){ | |
180 flip=0; | |
5131
cff03e88d331
prefer outfmt with no conversion (see vo's query flags)
arpi
parents:
5077
diff
changeset
|
181 if(sh->codec->outflags[j]&CODECS_FLAG_FLIP) |
cff03e88d331
prefer outfmt with no conversion (see vo's query flags)
arpi
parents:
5077
diff
changeset
|
182 if(!(sh->codec->outflags[j]&CODECS_FLAG_NOFLIP)) |
5075 | 183 flip=1; |
184 } | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
185 if(vo_flags&VFCAP_FLIPPED) flip^=1; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
186 if(flip && !(vo_flags&VFCAP_FLIP)){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
187 // we need to flip, but no flipping filter avail. |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
188 sh->vfilter=vf=vf_open_filter(vf,"flip",NULL); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
189 } |
5075 | 190 |
191 // time to do aspect ratio corrections... | |
192 | |
193 if(movie_aspect>-1.0) sh->aspect = movie_aspect; // cmdline overrides autodetect | |
194 // if(!sh->aspect) sh->aspect=1.0; | |
195 screen_size_x = opt_screen_size_x; | |
196 screen_size_y = opt_screen_size_y; | |
197 if(screen_size_xy||screen_size_x||screen_size_y){ | |
198 if(screen_size_xy>0){ | |
199 if(screen_size_xy<=8){ | |
200 screen_size_x=screen_size_xy*sh->disp_w; | |
201 screen_size_y=screen_size_xy*sh->disp_h; | |
202 } else { | |
203 screen_size_x=screen_size_xy; | |
204 screen_size_y=screen_size_xy*sh->disp_h/sh->disp_w; | |
205 } | |
206 } else if(!vidmode){ | |
207 if(!screen_size_x) screen_size_x=SCREEN_SIZE_X; | |
208 if(!screen_size_y) screen_size_y=SCREEN_SIZE_Y; | |
209 if(screen_size_x<=8) screen_size_x*=sh->disp_w; | |
210 if(screen_size_y<=8) screen_size_y*=sh->disp_h; | |
211 } | |
212 } else { | |
213 // check source format aspect, calculate prescale ::atmos | |
214 screen_size_x=sh->disp_w; | |
215 screen_size_y=sh->disp_h; | |
216 if(sh->aspect>0.01){ | |
217 mp_msg(MSGT_CPLAYER,MSGL_INFO,"Movie-Aspect is %.2f:1 - prescaling to correct movie aspect.\n", | |
218 sh->aspect); | |
219 screen_size_x=(int)((float)sh->disp_h*sh->aspect); | |
220 screen_size_x+=screen_size_x%2; // round | |
221 if(screen_size_x<sh->disp_w){ | |
222 screen_size_x=sh->disp_w; | |
223 screen_size_y=(int)((float)sh->disp_w*(1.0/sh->aspect)); | |
224 screen_size_y+=screen_size_y%2; // round | |
225 } | |
226 } else { | |
227 mp_msg(MSGT_CPLAYER,MSGL_INFO,"Movie-Aspect is undefined - no prescaling applied.\n"); | |
228 } | |
229 } | |
230 | |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
231 #if 0 |
5172 | 232 if(video_out->get_info) |
5156
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
233 { const vo_info_t *info = video_out->get_info(); |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
234 mp_msg(MSGT_CPLAYER,MSGL_INFO,"VO: [%s] %dx%d => %dx%d %s %s%s%s%s\n",info->short_name, |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
235 sh->disp_w,sh->disp_h, |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
236 screen_size_x,screen_size_y, |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
237 vo_format_name(out_fmt), |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
238 fullscreen?"fs ":"", |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
239 vidmode?"vm ":"", |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
240 softzoom?"zoom ":"", |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
241 (flip==1)?"flip ":""); |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
242 mp_msg(MSGT_CPLAYER,MSGL_V,"VO: Description: %s\n",info->name); |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
243 mp_msg(MSGT_CPLAYER,MSGL_V,"VO: Author: %s\n", info->author); |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
244 if(info->comment && strlen(info->comment) > 0) |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
245 mp_msg(MSGT_CPLAYER,MSGL_V,"VO: Comment: %s\n", info->comment); |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
246 } |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
247 #endif |
5156
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
248 |
5075 | 249 // Time to config libvo! |
250 mp_msg(MSGT_CPLAYER,MSGL_V,"video_out->init(%dx%d->%dx%d,flags=%d,'%s',0x%X)\n", | |
251 sh->disp_w,sh->disp_h, | |
252 screen_size_x,screen_size_y, | |
253 fullscreen|(vidmode<<1)|(softzoom<<2)|(flip<<3), | |
254 "MPlayer",out_fmt); | |
255 | |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
256 // memset(&vtune,0,sizeof(vo_tune_info_t)); |
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
257 if(vf->config(vf,sh->disp_w,sh->disp_h, |
5075 | 258 screen_size_x,screen_size_y, |
259 fullscreen|(vidmode<<1)|(softzoom<<2)|(flip<<3), | |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
260 out_fmt)==0){ |
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
261 // "MPlayer",out_fmt,&vtune)){ |
5075 | 262 mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_CannotInitVO); |
263 return 0; // exit_player(MSGTR_Exit_error); | |
264 } | |
265 | |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
266 #if 0 |
5156
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
267 #define FREE_MPI(mpi) if(mpi){if(mpi->flags&MP_IMGFLAG_ALLOCATED) free(mpi->planes[0]); free(mpi); mpi=NULL;} |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
268 FREE_MPI(static_images[0]) |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
269 FREE_MPI(static_images[1]) |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
270 FREE_MPI(temp_images[0]) |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
271 FREE_MPI(export_images[0]) |
1c250c1da93c
libvo printfs added (moved from mplayer.c), mpi buffers free'd to fix multifile playback
arpi
parents:
5131
diff
changeset
|
272 #undef FREE_MPI |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
273 #endif |
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
274 |
4878 | 275 return 1; |
276 } | |
277 | |
278 // mp_imgtype: buffering type, see mp_image.h | |
279 // mp_imgflag: buffer requirements (read/write, preserve, stride limits), see mp_image.h | |
280 // returns NULL or allocated mp_image_t* | |
281 // Note: buffer allocation may be moved to mpcodecs_config_vo() later... | |
282 mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, int w, int h){ | |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
283 return vf_get_image(sh->vfilter,sh->codec->outfmt[sh->outfmtidx],mp_imgtype,mp_imgflag,w,h); |
4878 | 284 } |
285 |