Mercurial > mplayer.hg
annotate libmpcodecs/vd.c @ 11595:95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
author | alex |
---|---|
date | Mon, 08 Dec 2003 21:57:12 +0000 |
parents | 6afc2d6f5a08 |
children | c0c9522eff73 |
rev | line source |
---|---|
4878 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 | |
10095
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
9534
diff
changeset
|
5 #define USE_THEORA |
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
9534
diff
changeset
|
6 |
4878 | 7 #include "config.h" |
8 #include "mp_msg.h" | |
5075 | 9 #include "help_mp.h" |
4878 | 10 |
11 #ifdef HAVE_MALLOC_H | |
12 #include <malloc.h> | |
13 #endif | |
14 | |
15 #include "codec-cfg.h" | |
16 //#include "mp_image.h" | |
17 | |
5607 | 18 #include "img_format.h" |
4878 | 19 |
20 #include "stream.h" | |
21 #include "demuxer.h" | |
22 #include "stheader.h" | |
6057
31e465fda59c
various openbsd and general warning fixes - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
5925
diff
changeset
|
23 #include "dec_video.h" |
4878 | 24 |
25 #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
|
26 #include "vf.h" |
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
27 |
4878 | 28 //#include "vd_internal.h" |
29 | |
30 extern vd_functions_t mpcodecs_vd_null; | |
4885 | 31 extern vd_functions_t mpcodecs_vd_cinepak; |
4915
f6990fad0ab3
Qt RPZA decoder interface by Roberto Togni <rtogni@bresciaonline.it>
arpi
parents:
4899
diff
changeset
|
32 extern vd_functions_t mpcodecs_vd_qtrpza; |
4951 | 33 extern vd_functions_t mpcodecs_vd_ffmpeg; |
10095
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
9534
diff
changeset
|
34 extern vd_functions_t mpcodecs_vd_theora; |
4958 | 35 extern vd_functions_t mpcodecs_vd_dshow; |
8295 | 36 extern vd_functions_t mpcodecs_vd_dmo; |
4968 | 37 extern vd_functions_t mpcodecs_vd_vfw; |
38 extern vd_functions_t mpcodecs_vd_vfwex; | |
39 extern vd_functions_t mpcodecs_vd_odivx; | |
40 extern vd_functions_t mpcodecs_vd_divx4; | |
4969 | 41 extern vd_functions_t mpcodecs_vd_raw; |
10305
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10095
diff
changeset
|
42 extern vd_functions_t mpcodecs_vd_hmblck; |
4969 | 43 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
|
44 extern vd_functions_t mpcodecs_vd_msrle; |
4987 | 45 extern vd_functions_t mpcodecs_vd_msvidc; |
46 extern vd_functions_t mpcodecs_vd_fli; | |
4989 | 47 extern vd_functions_t mpcodecs_vd_qtrle; |
48 extern vd_functions_t mpcodecs_vd_qtsmc; | |
49 extern vd_functions_t mpcodecs_vd_roqvideo; | |
50 extern vd_functions_t mpcodecs_vd_cyuv; | |
51 extern vd_functions_t mpcodecs_vd_nuv; | |
4998 | 52 extern vd_functions_t mpcodecs_vd_mpng; |
5029 | 53 extern vd_functions_t mpcodecs_vd_ijpg; |
7362 | 54 extern vd_functions_t mpcodecs_vd_mtga; |
9534
87e03d96a4cd
add support for sgi files to mencoder patch by (Todd Kirby <slapcat at pacbell dot net>)
michael
parents:
9502
diff
changeset
|
55 extern vd_functions_t mpcodecs_vd_sgi; |
4998 | 56 extern vd_functions_t mpcodecs_vd_libmpeg2; |
5476 | 57 extern vd_functions_t mpcodecs_vd_mpegpes; |
11386
229079491864
addition of special image formats for Zoran MJPEG, and vd_zrmjpeg.c
rik
parents:
11261
diff
changeset
|
58 extern vd_functions_t mpcodecs_vd_zrmjpeg; |
7180
28677d779205
-afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents:
7124
diff
changeset
|
59 extern vd_functions_t mpcodecs_vd_realvid; |
6701
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6506
diff
changeset
|
60 extern vd_functions_t mpcodecs_vd_xvid; |
6927 | 61 extern vd_functions_t mpcodecs_vd_libdv; |
7222
81f720e51821
added LCL decoder by Roberto Togni <r_togni@libero.it>, removed my old vd_zlib
alex
parents:
7220
diff
changeset
|
62 extern vd_functions_t mpcodecs_vd_lcl; |
7729 | 63 extern vd_functions_t mpcodecs_vd_lzo; |
8160 | 64 extern vd_functions_t mpcodecs_vd_qtvideo; |
10712 | 65 extern vd_functions_t mpcodecs_vd_qt8bps; |
4878 | 66 |
67 vd_functions_t* mpcodecs_vd_drivers[] = { | |
68 &mpcodecs_vd_null, | |
4884 | 69 &mpcodecs_vd_cinepak, |
4915
f6990fad0ab3
Qt RPZA decoder interface by Roberto Togni <rtogni@bresciaonline.it>
arpi
parents:
4899
diff
changeset
|
70 &mpcodecs_vd_qtrpza, |
4951 | 71 #ifdef USE_LIBAVCODEC |
72 &mpcodecs_vd_ffmpeg, | |
73 #endif | |
10095
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
9534
diff
changeset
|
74 #ifdef HAVE_OGGTHEORA |
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
9534
diff
changeset
|
75 &mpcodecs_vd_theora, |
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
9534
diff
changeset
|
76 #endif |
4968 | 77 #ifdef USE_WIN32DLL |
4958 | 78 #ifdef USE_DIRECTSHOW |
79 &mpcodecs_vd_dshow, | |
8295 | 80 &mpcodecs_vd_dmo, |
4958 | 81 #endif |
4968 | 82 &mpcodecs_vd_vfw, |
83 &mpcodecs_vd_vfwex, | |
84 #endif | |
85 #ifdef USE_DIVX | |
86 &mpcodecs_vd_odivx, | |
87 #ifdef NEW_DECORE | |
88 &mpcodecs_vd_divx4, | |
89 #endif | |
90 #endif | |
7729 | 91 &mpcodecs_vd_lzo, |
4969 | 92 &mpcodecs_vd_raw, |
10305
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10095
diff
changeset
|
93 &mpcodecs_vd_hmblck, |
5193
abea2deab4d6
MPlayer now has a Microsoft RLE decoder to call its own...only supports
melanson
parents:
5180
diff
changeset
|
94 &mpcodecs_vd_msrle, |
4987 | 95 &mpcodecs_vd_msvidc, |
96 &mpcodecs_vd_fli, | |
4989 | 97 &mpcodecs_vd_qtrle, |
98 &mpcodecs_vd_qtsmc, | |
99 &mpcodecs_vd_roqvideo, | |
100 &mpcodecs_vd_cyuv, | |
101 &mpcodecs_vd_nuv, | |
4969 | 102 #ifdef USE_XANIM |
103 &mpcodecs_vd_xanim, | |
104 #endif | |
4998 | 105 #ifdef HAVE_PNG |
106 &mpcodecs_vd_mpng, | |
107 #endif | |
5029 | 108 #ifdef HAVE_JPEG |
109 &mpcodecs_vd_ijpg, | |
110 #endif | |
7362 | 111 &mpcodecs_vd_mtga, |
9534
87e03d96a4cd
add support for sgi files to mencoder patch by (Todd Kirby <slapcat at pacbell dot net>)
michael
parents:
9502
diff
changeset
|
112 &mpcodecs_vd_sgi, |
8026
b465ba5897a3
usage of libmpeg2, liba52, mp3lib & svq1 can be disabled
arpi
parents:
7978
diff
changeset
|
113 #ifdef USE_LIBMPEG2 |
4998 | 114 &mpcodecs_vd_libmpeg2, |
8026
b465ba5897a3
usage of libmpeg2, liba52, mp3lib & svq1 can be disabled
arpi
parents:
7978
diff
changeset
|
115 #endif |
5476 | 116 &mpcodecs_vd_mpegpes, |
11386
229079491864
addition of special image formats for Zoran MJPEG, and vd_zrmjpeg.c
rik
parents:
11261
diff
changeset
|
117 #ifdef HAVE_ZR |
229079491864
addition of special image formats for Zoran MJPEG, and vd_zrmjpeg.c
rik
parents:
11261
diff
changeset
|
118 &mpcodecs_vd_zrmjpeg, |
229079491864
addition of special image formats for Zoran MJPEG, and vd_zrmjpeg.c
rik
parents:
11261
diff
changeset
|
119 #endif |
6343
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6234
diff
changeset
|
120 #ifdef USE_REALCODECS |
7180
28677d779205
-afm/-vfm migration from ID (int) to NAME (string) - simplifies code and makes dlopen()'ing possible
arpi
parents:
7124
diff
changeset
|
121 &mpcodecs_vd_realvid, |
6343
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6234
diff
changeset
|
122 #endif |
11436 | 123 #if defined(HAVE_XVID3) || defined(HAVE_XVID4) |
6701
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6506
diff
changeset
|
124 &mpcodecs_vd_xvid, |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6506
diff
changeset
|
125 #endif |
6927 | 126 #ifdef HAVE_LIBDV095 |
7222
81f720e51821
added LCL decoder by Roberto Togni <r_togni@libero.it>, removed my old vd_zlib
alex
parents:
7220
diff
changeset
|
127 &mpcodecs_vd_libdv, |
6927 | 128 #endif |
7222
81f720e51821
added LCL decoder by Roberto Togni <r_togni@libero.it>, removed my old vd_zlib
alex
parents:
7220
diff
changeset
|
129 &mpcodecs_vd_lcl, |
9502
241bba8f60e8
MACOSX support patch, based on Dan Christiansens work
alex
parents:
9275
diff
changeset
|
130 #if defined(USE_QTX_CODECS) || defined(MACOSX) |
8160 | 131 &mpcodecs_vd_qtvideo, |
132 #endif | |
10712 | 133 &mpcodecs_vd_qt8bps, |
4878 | 134 NULL |
135 }; | |
136 | |
4971 | 137 #include "libvo/video_out.h" |
138 | |
5075 | 139 // libvo opts: |
140 int fullscreen=0; | |
141 int vidmode=0; | |
142 int softzoom=0; | |
143 int flip=-1; | |
144 int opt_screen_size_x=0; | |
145 int opt_screen_size_y=0; | |
7452
b062be2c1423
This patch allows you to use fractional values for specifying a zoom.
arpi
parents:
7362
diff
changeset
|
146 float screen_size_xy=0; |
5075 | 147 float movie_aspect=-1.0; |
148 int vo_flags=0; | |
5483 | 149 int vd_use_slices=1; |
5075 | 150 |
5180 | 151 extern vd_functions_t* mpvdec; // FIXME! |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
152 extern int divx_quality; |
5180 | 153 |
4878 | 154 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
|
155 int i,j; |
5075 | 156 unsigned int out_fmt=0; |
157 int screen_size_x=0;//SCREEN_SIZE_X; | |
158 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
|
159 // vo_functions_t* video_out=sh->video_out; |
7978
ab15849ec648
10L ! Don't remove the scale filter if we don't added ourself
albeu
parents:
7971
diff
changeset
|
160 vf_instance_t* vf=sh->vfilter,*sc=NULL; |
9275
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
161 int palette=0; |
5075 | 162 |
8579
8f6e84a2a431
do not config video out system if input dimensions are invalid (triggered a segfault in vop_expand due to missing dimension checks, which bug was reported by gabucino)
alex
parents:
8295
diff
changeset
|
163 if(!sh->disp_w || !sh->disp_h) |
6993 | 164 mp_msg(MSGT_DECVIDEO,MSGL_WARN, MSGTR_CodecDidNotSet); |
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
|
165 /* 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
|
166 * 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
|
167 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
|
168 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
|
169 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
|
170 sh->disp_h=h; |
8579
8f6e84a2a431
do not config video out system if input dimensions are invalid (triggered a segfault in vop_expand due to missing dimension checks, which bug was reported by gabucino)
alex
parents:
8295
diff
changeset
|
171 |
8f6e84a2a431
do not config video out system if input dimensions are invalid (triggered a segfault in vop_expand due to missing dimension checks, which bug was reported by gabucino)
alex
parents:
8295
diff
changeset
|
172 if(!sh->disp_w || !sh->disp_h) |
8f6e84a2a431
do not config video out system if input dimensions are invalid (triggered a segfault in vop_expand due to missing dimension checks, which bug was reported by gabucino)
alex
parents:
8295
diff
changeset
|
173 return 0; |
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
|
174 |
6993 | 175 mp_msg(MSGT_DECVIDEO,MSGL_INFO,MSGTR_VoConfigRequest,w,h,vo_format_name(preferred_outfmt)); |
5075 | 176 |
5925
3f17793b2cea
setting vf_inited flag, some printf->mp_msg, some MSGL_FATAL->MSGL_WARN
arpi
parents:
5903
diff
changeset
|
177 // if(!vf) return 1; // temp hack |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
178 |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
179 if(get_video_quality_max(sh)<=0 && divx_quality){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
180 // user wants postprocess but no pp filter yet: |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
181 sh->vfilter=vf=vf_open_filter(vf,"pp",NULL); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
182 } |
5077 | 183 |
5131
cff03e88d331
prefer outfmt with no conversion (see vo's query flags)
arpi
parents:
5077
diff
changeset
|
184 // 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
|
185 csp_again: |
9275
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
186 |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
187 if(verbose>0){ |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
188 vf_instance_t* f=vf; |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
189 mp_msg(MSGT_DECVIDEO,MSGL_V,"Trying filter chain:"); |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
190 for(f = vf ; f ; f = f->next) |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
191 mp_msg(MSGT_DECVIDEO,MSGL_V," %s",f->info->name); |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
192 mp_msg(MSGT_DECVIDEO,MSGL_V,"\n"); |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
193 } |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
194 |
5131
cff03e88d331
prefer outfmt with no conversion (see vo's query flags)
arpi
parents:
5077
diff
changeset
|
195 j=-1; |
5075 | 196 for(i=0;i<CODECS_MAX_OUTFMT;i++){ |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
197 int flags; |
5075 | 198 out_fmt=sh->codec->outfmt[i]; |
9275
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
199 if(out_fmt==(unsigned int)0xFFFFFFFF) continue; |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
200 flags=vf->query_format(vf,out_fmt); |
7211 | 201 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"vo_debug: query(%s) returned 0x%X (i=%d) \n",vo_format_name(out_fmt),flags,i); |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
202 if((flags&2) || (flags && j<0)){ |
5180 | 203 // check (query) if codec really support this outfmt... |
7261
ec187e86b20b
pass outflags[] index via sh->outfmtidx to the vd->control() func (for VfW)
arpi
parents:
7222
diff
changeset
|
204 sh->outfmtidx=j; // pass index to the control() function this way |
7918 | 205 if(mpvdec->control(sh,VDCTRL_QUERY_FORMAT,&out_fmt)==CONTROL_FALSE){ |
206 mp_msg(MSGT_CPLAYER,MSGL_DBG2,"vo_debug: codec query_format(%s) returned FALSE\n",vo_format_name(out_fmt)); | |
5180 | 207 continue; |
7918 | 208 } |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
209 j=i; vo_flags=flags; if(flags&2) break; |
9275
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
210 } else |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
211 if(!palette && !(flags&3) && (out_fmt==IMGFMT_RGB8||out_fmt==IMGFMT_BGR8)){ |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
212 sh->outfmtidx=j; // pass index to the control() function this way |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
213 if(mpvdec->control(sh,VDCTRL_QUERY_FORMAT,&out_fmt)!=CONTROL_FALSE) |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
214 palette=1; |
5180 | 215 } |
5075 | 216 } |
5131
cff03e88d331
prefer outfmt with no conversion (see vo's query flags)
arpi
parents:
5077
diff
changeset
|
217 if(j<0){ |
5075 | 218 // TODO: no match - we should use conversion... |
9275
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
219 if(strcmp(vf->info->name,"scale") && palette!=-1){ |
6993 | 220 mp_msg(MSGT_DECVIDEO,MSGL_INFO,MSGTR_CouldNotFindColorspace); |
7978
ab15849ec648
10L ! Don't remove the scale filter if we don't added ourself
albeu
parents:
7971
diff
changeset
|
221 sc=vf=vf_open_filter(vf,"scale",NULL); |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
222 goto csp_again; |
9275
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
223 } else |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
224 if(palette==1){ |
11261 | 225 mp_msg(MSGT_DECVIDEO,MSGL_V,"vd: Trying -vf palette...\n"); |
9275
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
226 palette=-1; |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
227 vf=vf_open_filter(vf,"palette",NULL); |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
228 goto csp_again; |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
229 } else |
d29f03d5763c
- append the 'palette' filter if the codec supports RGB8/BGR8 and no csp
arpi
parents:
8579
diff
changeset
|
230 { // sws failed, if the last filter (vf_vo) support MPEGPES try to append vf_lavc |
7971 | 231 vf_instance_t* vo, *vp = NULL, *ve; |
7978
ab15849ec648
10L ! Don't remove the scale filter if we don't added ourself
albeu
parents:
7971
diff
changeset
|
232 // Remove the scale filter if we added it ourself |
ab15849ec648
10L ! Don't remove the scale filter if we don't added ourself
albeu
parents:
7971
diff
changeset
|
233 if(vf == sc) { |
7971 | 234 ve = vf; |
235 vf = vf->next; | |
236 vf_uninit_filter(ve); | |
237 } | |
238 // Find the last filter (vf_vo) | |
239 for(vo = vf ; vo->next ; vo = vo->next) | |
240 vp = vo; | |
241 if(vo->query_format(vo,IMGFMT_MPEGPES) && (!vp || (vp && strcmp(vp->info->name,"lavc")))) { | |
242 ve = vf_open_filter(vo,"lavc",NULL); | |
243 if(vp) vp->next = ve; | |
244 else vf = ve; | |
245 goto csp_again; | |
246 } | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
247 } |
5925
3f17793b2cea
setting vf_inited flag, some printf->mp_msg, some MSGL_FATAL->MSGL_WARN
arpi
parents:
5903
diff
changeset
|
248 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_VOincompCodec); |
3f17793b2cea
setting vf_inited flag, some printf->mp_msg, some MSGL_FATAL->MSGL_WARN
arpi
parents:
5903
diff
changeset
|
249 sh->vf_inited=-1; |
5075 | 250 return 0; // failed |
251 } | |
5131
cff03e88d331
prefer outfmt with no conversion (see vo's query flags)
arpi
parents:
5077
diff
changeset
|
252 out_fmt=sh->codec->outfmt[j]; |
7211 | 253 mp_msg(MSGT_CPLAYER,MSGL_INFO,"VDec: using %s as output csp (no %d)\n",vo_format_name(out_fmt),j); |
5131
cff03e88d331
prefer outfmt with no conversion (see vo's query flags)
arpi
parents:
5077
diff
changeset
|
254 sh->outfmtidx=j; |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
255 sh->vfilter=vf; |
5075 | 256 |
257 // autodetect flipping | |
258 if(flip==-1){ | |
259 flip=0; | |
5131
cff03e88d331
prefer outfmt with no conversion (see vo's query flags)
arpi
parents:
5077
diff
changeset
|
260 if(sh->codec->outflags[j]&CODECS_FLAG_FLIP) |
cff03e88d331
prefer outfmt with no conversion (see vo's query flags)
arpi
parents:
5077
diff
changeset
|
261 if(!(sh->codec->outflags[j]&CODECS_FLAG_NOFLIP)) |
5075 | 262 flip=1; |
263 } | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
264 if(vo_flags&VFCAP_FLIPPED) flip^=1; |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
265 if(flip && !(vo_flags&VFCAP_FLIP)){ |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
266 // we need to flip, but no flipping filter avail. |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
267 sh->vfilter=vf=vf_open_filter(vf,"flip",NULL); |
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5549
diff
changeset
|
268 } |
5075 | 269 |
270 // time to do aspect ratio corrections... | |
271 | |
272 if(movie_aspect>-1.0) sh->aspect = movie_aspect; // cmdline overrides autodetect | |
273 // if(!sh->aspect) sh->aspect=1.0; | |
5903 | 274 |
275 if(opt_screen_size_x||opt_screen_size_y){ | |
276 screen_size_x = opt_screen_size_x; | |
277 screen_size_y = opt_screen_size_y; | |
278 if(!vidmode){ | |
5075 | 279 if(!screen_size_x) screen_size_x=SCREEN_SIZE_X; |
280 if(!screen_size_y) screen_size_y=SCREEN_SIZE_Y; | |
281 if(screen_size_x<=8) screen_size_x*=sh->disp_w; | |
282 if(screen_size_y<=8) screen_size_y*=sh->disp_h; | |
5903 | 283 } |
5075 | 284 } else { |
285 // check source format aspect, calculate prescale ::atmos | |
286 screen_size_x=sh->disp_w; | |
287 screen_size_y=sh->disp_h; | |
7661
90118ab3c95c
argh. gcc sux. someone please explain why float x=0; if(x>0) ... is true.
arpi
parents:
7452
diff
changeset
|
288 if(screen_size_xy>=0.001){ |
5903 | 289 if(screen_size_xy<=8){ |
290 // -xy means x+y scale | |
291 screen_size_x*=screen_size_xy; | |
292 screen_size_y*=screen_size_xy; | |
293 } else { | |
294 // -xy means forced width while keeping correct aspect | |
295 screen_size_x=screen_size_xy; | |
296 screen_size_y=screen_size_xy*sh->disp_h/sh->disp_w; | |
297 } | |
298 } | |
5075 | 299 if(sh->aspect>0.01){ |
5903 | 300 int w; |
6993 | 301 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MovieAspectIsSet,sh->aspect); |
5903 | 302 w=(int)((float)screen_size_y*sh->aspect); w+=w%2; // round |
303 // we don't like horizontal downscale || user forced width: | |
304 if(w<screen_size_x || screen_size_xy>8){ | |
305 screen_size_y=(int)((float)screen_size_x*(1.0/sh->aspect)); | |
5075 | 306 screen_size_y+=screen_size_y%2; // round |
5903 | 307 } else screen_size_x=w; // keep new width |
5075 | 308 } else { |
6993 | 309 mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MovieAspectUndefined); |
5075 | 310 } |
311 } | |
312 | |
313 // Time to config libvo! | |
7124
eca7dbad0166
finally removed query_vaa, bes_da and vo_tune_info - the obsoleted libvo api
alex
parents:
6993
diff
changeset
|
314 mp_msg(MSGT_CPLAYER,MSGL_V,"VO Config (%dx%d->%dx%d,flags=%d,'%s',0x%X)\n", |
5075 | 315 sh->disp_w,sh->disp_h, |
316 screen_size_x,screen_size_y, | |
317 fullscreen|(vidmode<<1)|(softzoom<<2)|(flip<<3), | |
318 "MPlayer",out_fmt); | |
319 | |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5483
diff
changeset
|
320 if(vf->config(vf,sh->disp_w,sh->disp_h, |
5075 | 321 screen_size_x,screen_size_y, |
322 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
|
323 out_fmt)==0){ |
7124
eca7dbad0166
finally removed query_vaa, bes_da and vo_tune_info - the obsoleted libvo api
alex
parents:
6993
diff
changeset
|
324 // "MPlayer",out_fmt)){ |
5925
3f17793b2cea
setting vf_inited flag, some printf->mp_msg, some MSGL_FATAL->MSGL_WARN
arpi
parents:
5903
diff
changeset
|
325 mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_CannotInitVO); |
3f17793b2cea
setting vf_inited flag, some printf->mp_msg, some MSGL_FATAL->MSGL_WARN
arpi
parents:
5903
diff
changeset
|
326 sh->vf_inited=-1; |
3f17793b2cea
setting vf_inited flag, some printf->mp_msg, some MSGL_FATAL->MSGL_WARN
arpi
parents:
5903
diff
changeset
|
327 return 0; |
5075 | 328 } |
329 | |
5925
3f17793b2cea
setting vf_inited flag, some printf->mp_msg, some MSGL_FATAL->MSGL_WARN
arpi
parents:
5903
diff
changeset
|
330 sh->vf_inited=1; |
4878 | 331 return 1; |
332 } | |
333 | |
334 // mp_imgtype: buffering type, see mp_image.h | |
335 // mp_imgflag: buffer requirements (read/write, preserve, stride limits), see mp_image.h | |
336 // returns NULL or allocated mp_image_t* | |
337 // Note: buffer allocation may be moved to mpcodecs_config_vo() later... | |
338 mp_image_t* mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag, int w, int h){ | |
6234
af0b011c9440
setting mpi's w/h to disp_w/h. it fixes mpeg1 crash when height%16!=0
arpi
parents:
6138
diff
changeset
|
339 mp_image_t* mpi=vf_get_image(sh->vfilter,sh->codec->outfmt[sh->outfmtidx],mp_imgtype,mp_imgflag,w,h); |
af0b011c9440
setting mpi's w/h to disp_w/h. it fixes mpeg1 crash when height%16!=0
arpi
parents:
6138
diff
changeset
|
340 mpi->x=mpi->y=0; |
af0b011c9440
setting mpi's w/h to disp_w/h. it fixes mpeg1 crash when height%16!=0
arpi
parents:
6138
diff
changeset
|
341 mpi->w=sh->disp_w; |
af0b011c9440
setting mpi's w/h to disp_w/h. it fixes mpeg1 crash when height%16!=0
arpi
parents:
6138
diff
changeset
|
342 mpi->h=sh->disp_h; |
af0b011c9440
setting mpi's w/h to disp_w/h. it fixes mpeg1 crash when height%16!=0
arpi
parents:
6138
diff
changeset
|
343 return mpi; |
4878 | 344 } |
345 | |
7220
e3ecccc7e505
warning fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
arpi
parents:
7211
diff
changeset
|
346 void mpcodecs_draw_slice(sh_video_t *sh, unsigned char** src, int* stride, int w,int h, int x, int y) { |
6709 | 347 struct vf_instance_s* vf = sh->vfilter; |
348 | |
349 if(vf->draw_slice) | |
350 vf->draw_slice(vf,src,stride,w,h,x,y); | |
351 } |