Mercurial > mplayer.hg
annotate libmpcodecs/dec_video.c @ 6588:12826366a806
more informal warning and also fixed a 10l bug. Patch by tibcu
author | alex |
---|---|
date | Fri, 28 Jun 2002 16:42:32 +0000 |
parents | a48ad140c3af |
children | 5bf3ed8a17c4 |
rev | line source |
---|---|
2775 | 1 |
2 #include "config.h" | |
1294 | 3 |
4 #include <stdio.h> | |
2775 | 5 #ifdef HAVE_MALLOC_H |
6 #include <malloc.h> | |
7 #endif | |
1294 | 8 #include <stdlib.h> |
1430 | 9 #include <unistd.h> |
1294 | 10 |
1567 | 11 #include "mp_msg.h" |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
12 #include "help_mp.h" |
1294 | 13 |
1327
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1309
diff
changeset
|
14 #include "linux/timer.h" |
1496 | 15 #include "linux/shmem.h" |
1327
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1309
diff
changeset
|
16 |
2563 | 17 extern int verbose; // defined in mplayer.c |
18 | |
1294 | 19 #include "stream.h" |
20 #include "demuxer.h" | |
1375
dbcb5b5e1fae
file-format detection stuff moved out from mplayer.c to demuxer.c and dec_video.c
arpi
parents:
1367
diff
changeset
|
21 #include "parse_es.h" |
1294 | 22 |
23 #include "codec-cfg.h" | |
24 | |
25 #include "libvo/video_out.h" | |
26 | |
4188 | 27 #include "stheader.h" |
4902
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
28 #include "vd.h" |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5328
diff
changeset
|
29 #include "vf.h" |
4188 | 30 |
2563 | 31 #include "dec_video.h" |
32 | |
33 // =================================================================== | |
34 | |
35 extern double video_time_usage; | |
36 extern double vout_time_usage; | |
4388 | 37 extern vo_vaa_t vo_vaa; |
2563 | 38 |
2184 | 39 #include "postproc/postprocess.h" |
40 | |
3144 | 41 #include "cpudetect.h" |
42 | |
2563 | 43 int divx_quality=0; |
1294 | 44 |
5180 | 45 vd_functions_t* mpvdec=NULL; |
4902
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
46 |
1429 | 47 int get_video_quality_max(sh_video_t *sh_video){ |
5519 | 48 vf_instance_t* vf=sh_video->vfilter; |
49 if(vf){ | |
50 int ret=vf->control(vf,VFCTRL_QUERY_MAX_PP_LEVEL,NULL); | |
51 if(ret>0){ | |
52 mp_msg(MSGT_DECVIDEO,MSGL_INFO,"[PP] Using external postprocessing filter, max q = %d\n",ret); | |
53 return ret; | |
54 } | |
55 } | |
4957 | 56 if(mpvdec){ |
4967 | 57 int ret=mpvdec->control(sh_video,VDCTRL_QUERY_MAX_PP_LEVEL,NULL); |
5519 | 58 if(ret>0){ |
59 mp_msg(MSGT_DECVIDEO,MSGL_INFO,"[PP] Using codec's postprocessing, max q = %d\n",ret); | |
60 return ret; | |
61 } | |
4957 | 62 } |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
5984
diff
changeset
|
63 // mp_msg(MSGT_DECVIDEO,MSGL_INFO,"[PP] Sorry, postprocessing is not available\n"); |
5519 | 64 return 0; |
1429 | 65 } |
66 | |
67 void set_video_quality(sh_video_t *sh_video,int quality){ | |
5519 | 68 vf_instance_t* vf=sh_video->vfilter; |
69 if(vf){ | |
70 int ret=vf->control(vf,VFCTRL_SET_PP_LEVEL, (void*)(&quality)); | |
71 if(ret==CONTROL_TRUE) return; // success | |
72 } | |
4957 | 73 if(mpvdec) |
74 mpvdec->control(sh_video,VDCTRL_SET_PP_LEVEL, (void*)(&quality)); | |
1429 | 75 } |
76 | |
4395 | 77 int set_video_colors(sh_video_t *sh_video,char *item,int value) |
78 { | |
79 if(vo_vaa.get_video_eq) | |
4388 | 80 { |
4395 | 81 vidix_video_eq_t veq; |
82 if(vo_vaa.get_video_eq(&veq) == 0) | |
4388 | 83 { |
4395 | 84 int v_hw_equ_cap = veq.cap; |
85 if(v_hw_equ_cap != 0) | |
86 { | |
87 if(vo_vaa.set_video_eq) | |
88 { | |
89 veq.flags = VEQ_FLG_ITU_R_BT_601; /* Fixme please !!! */ | |
90 if(strcmp(item,"Brightness") == 0) | |
91 { | |
92 if(!(v_hw_equ_cap & VEQ_CAP_BRIGHTNESS)) goto try_sw_control; | |
93 veq.brightness = value*10; | |
94 veq.cap = VEQ_CAP_BRIGHTNESS; | |
95 } | |
96 else | |
97 if(strcmp(item,"Contrast") == 0) | |
98 { | |
99 if(!(v_hw_equ_cap & VEQ_CAP_CONTRAST)) goto try_sw_control; | |
100 veq.contrast = value*10; | |
101 veq.cap = VEQ_CAP_CONTRAST; | |
102 } | |
103 else | |
104 if(strcmp(item,"Saturation") == 0) | |
105 { | |
106 if(!(v_hw_equ_cap & VEQ_CAP_SATURATION)) goto try_sw_control; | |
107 veq.saturation = value*10; | |
108 veq.cap = VEQ_CAP_SATURATION; | |
109 } | |
110 else | |
111 if(strcmp(item,"Hue") == 0) | |
112 { | |
113 if(!(v_hw_equ_cap & VEQ_CAP_HUE)) goto try_sw_control; | |
114 veq.hue = value*10; | |
115 veq.cap = VEQ_CAP_HUE; | |
116 } | |
117 else goto try_sw_control;; | |
118 vo_vaa.set_video_eq(&veq); | |
119 } | |
120 return 1; | |
121 } | |
4388 | 122 } |
123 } | |
4395 | 124 try_sw_control: |
5005
24d5713afe2f
old temp vars removed, in-codecs equalizer support added, error message if -vfm N/A
arpi
parents:
4971
diff
changeset
|
125 if(mpvdec) return mpvdec->control(sh_video,VDCTRL_SET_EQUALIZER,item,(int)value); |
1429 | 126 return 0; |
127 } | |
1294 | 128 |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
129 void uninit_video(sh_video_t *sh_video){ |
1654 | 130 if(!sh_video->inited) return; |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
131 mp_msg(MSGT_DECVIDEO,MSGL_V,"uninit video: %d \n",sh_video->codec->driver); |
4902
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
132 mpvdec->uninit(sh_video); |
5737 | 133 vf_uninit_filter_chain(sh_video->vfilter); |
1654 | 134 sh_video->inited=0; |
135 } | |
136 | |
5171
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
137 int init_video(sh_video_t *sh_video,char* codecname,int vfm,int status){ |
6230
936aa617e829
restore original bih->biCompression if codec init failed
arpi
parents:
6138
diff
changeset
|
138 unsigned int orig_fourcc=sh_video->bih?sh_video->bih->biCompression:0; |
5171
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
139 sh_video->codec=NULL; |
5925
3f17793b2cea
setting vf_inited flag, some printf->mp_msg, some MSGL_FATAL->MSGL_WARN
arpi
parents:
5871
diff
changeset
|
140 sh_video->vf_inited=0; |
6230
936aa617e829
restore original bih->biCompression if codec init failed
arpi
parents:
6138
diff
changeset
|
141 |
936aa617e829
restore original bih->biCompression if codec init failed
arpi
parents:
6138
diff
changeset
|
142 while(1){ |
936aa617e829
restore original bih->biCompression if codec init failed
arpi
parents:
6138
diff
changeset
|
143 int i; |
936aa617e829
restore original bih->biCompression if codec init failed
arpi
parents:
6138
diff
changeset
|
144 // restore original fourcc: |
936aa617e829
restore original bih->biCompression if codec init failed
arpi
parents:
6138
diff
changeset
|
145 if(sh_video->bih) sh_video->bih->biCompression=orig_fourcc; |
936aa617e829
restore original bih->biCompression if codec init failed
arpi
parents:
6138
diff
changeset
|
146 if(!(sh_video->codec=find_codec(sh_video->format, |
936aa617e829
restore original bih->biCompression if codec init failed
arpi
parents:
6138
diff
changeset
|
147 sh_video->bih?((unsigned int*) &sh_video->bih->biCompression):NULL, |
936aa617e829
restore original bih->biCompression if codec init failed
arpi
parents:
6138
diff
changeset
|
148 sh_video->codec,0) )) break; |
5171
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
149 // ok we found one codec |
5328
014ddf03476d
check and set codec selection - impossible to do it at find_codec
arpi
parents:
5266
diff
changeset
|
150 if(sh_video->codec->flags&CODECS_FLAG_SELECTED) continue; // already tried & failed |
5171
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
151 if(codecname && strcmp(sh_video->codec->name,codecname)) continue; // -vc |
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
152 if(vfm>=0 && sh_video->codec->driver!=vfm) continue; // vfm doesn't match |
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
153 if(sh_video->codec->status<status) continue; // too unstable |
5328
014ddf03476d
check and set codec selection - impossible to do it at find_codec
arpi
parents:
5266
diff
changeset
|
154 sh_video->codec->flags|=CODECS_FLAG_SELECTED; // tagging it |
5171
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
155 // ok, it matches all rules, let's find the driver! |
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
156 for (i=0; mpcodecs_vd_drivers[i] != NULL; i++) |
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
157 if(mpcodecs_vd_drivers[i]->info->id==sh_video->codec->driver) break; |
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
158 mpvdec=mpcodecs_vd_drivers[i]; |
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
159 if(!mpvdec){ // driver not available (==compiled in) |
5925
3f17793b2cea
setting vf_inited flag, some printf->mp_msg, some MSGL_FATAL->MSGL_WARN
arpi
parents:
5871
diff
changeset
|
160 mp_msg(MSGT_DECVIDEO,MSGL_WARN,"Requested video codec family [%s] (vfm=%d) not available (enable it at compile time!)\n", |
5171
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
161 sh_video->codec->name, sh_video->codec->driver); |
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
162 continue; |
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
163 } |
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
164 // it's available, let's try to init! |
6566 | 165 if(sh_video->codec->flags & CODECS_FLAG_ALIGN16){ |
166 // align width/height to n*16 | |
167 // FIXME: save orig w/h, and restore if codec init failed! | |
168 if(sh_video->bih){ | |
169 sh_video->disp_w=sh_video->bih->biWidth=(sh_video->bih->biWidth+15)&(~15); | |
170 sh_video->disp_h=sh_video->bih->biHeight=(sh_video->bih->biHeight+15)&(~15); | |
171 } else { | |
172 sh_video->disp_w=(sh_video->disp_w+15)&(~15); | |
173 sh_video->disp_h=(sh_video->disp_h+15)&(~15); | |
174 } | |
175 } | |
176 // init() | |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
5984
diff
changeset
|
177 mp_msg(MSGT_DECVIDEO,MSGL_INFO,"Opening video decoder: [%s] %s\n",mpvdec->info->short_name,mpvdec->info->name); |
5171
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
178 if(!mpvdec->init(sh_video)){ |
5925
3f17793b2cea
setting vf_inited flag, some printf->mp_msg, some MSGL_FATAL->MSGL_WARN
arpi
parents:
5871
diff
changeset
|
179 mp_msg(MSGT_DECVIDEO,MSGL_INFO,"VDecoder init failed :(\n"); |
5171
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
180 continue; // try next... |
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
181 } |
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
182 // Yeah! We got it! |
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
183 sh_video->inited=1; |
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
184 return 1; |
4902
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
185 } |
5171
7145d6aba6cd
init_video() changed - now it handles codec selection
arpi
parents:
5155
diff
changeset
|
186 return 0; |
1294 | 187 } |
188 | |
5224 | 189 extern int vo_directrendering; |
4515 | 190 |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5328
diff
changeset
|
191 int decode_video(sh_video_t *sh_video,unsigned char *start,int in_size,int drop_frame){ |
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5328
diff
changeset
|
192 vf_instance_t* vf=sh_video->vfilter; |
4898 | 193 mp_image_t *mpi=NULL; |
1360 | 194 unsigned int t=GetTimer(); |
195 unsigned int t2; | |
4834 | 196 double tt; |
1360 | 197 |
5266
413e450da31c
try to uncomment this line - very funny effect (skipping I frames)
arpi
parents:
5224
diff
changeset
|
198 //if(!(sh_video->ds->flags&1) || sh_video->ds->pack_no<5) |
4902
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
199 mpi=mpvdec->decode(sh_video, start, in_size, drop_frame); |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
200 |
1294 | 201 //------------------------ frame decoded. -------------------- |
202 | |
3160 | 203 #ifdef ARCH_X86 |
1367 | 204 // some codecs is broken, and doesn't restore MMX state :( |
205 // it happens usually with broken/damaged files. | |
3144 | 206 if(gCpuCaps.has3DNow){ |
207 __asm __volatile ("femms\n\t":::"memory"); | |
208 } | |
209 else if(gCpuCaps.hasMMX){ | |
210 __asm __volatile ("emms\n\t":::"memory"); | |
211 } | |
3160 | 212 #endif |
1367 | 213 |
4834 | 214 t2=GetTimer();t=t2-t; |
215 tt = t*0.000001f; | |
216 video_time_usage+=tt; | |
4898 | 217 |
5643 | 218 if(!mpi || drop_frame) return 0; // error / skipped frame |
5040 | 219 |
5507
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5328
diff
changeset
|
220 //vo_draw_image(video_out,mpi); |
d0d029fda134
video filter layer - written from scratch, but inspired a lot by Fredrik Kuivinen's patch
arpi
parents:
5328
diff
changeset
|
221 vf->put_image(vf,mpi); |
5643 | 222 vf->control(vf,VFCTRL_DRAW_OSD,NULL); |
4898 | 223 |
4834 | 224 t2=GetTimer()-t2; |
225 tt=t2*0.000001f; | |
226 vout_time_usage+=tt; | |
1360 | 227 |
5984 | 228 return 1; |
1294 | 229 } |