Mercurial > mplayer.hg
annotate libmpcodecs/dec_video.c @ 4925:6719d1a3be53
add no fs as default for windrivers
author | atmos4 |
---|---|
date | Sun, 03 Mar 2002 13:40:23 +0000 |
parents | 7c4edfe929c8 |
children | 45c51c7f7870 |
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" |
4188 | 29 |
2563 | 30 #include "dec_video.h" |
31 | |
32 // =================================================================== | |
4902
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
33 // temp hack: |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
34 |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
35 #ifdef FF_POSTPROCESS |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
36 #ifndef MBC |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
37 #define MBC 48 |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
38 #define MBR 36 |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
39 #endif |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
40 int quant_store[MBR+1][MBC+1]; // [Review] |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
41 #endif |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
42 |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
43 int avcodec_inited=0; |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
44 |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
45 // =================================================================== |
2563 | 46 |
4844
76acf5bbda78
exclude benchmark stuff execution from normal playback
nick
parents:
4838
diff
changeset
|
47 extern int benchmark; |
2563 | 48 extern double video_time_usage; |
49 extern double vout_time_usage; | |
4834 | 50 extern double max_video_time_usage; |
51 extern double max_vout_time_usage; | |
4838 | 52 extern double cur_video_time_usage; |
53 extern double cur_vout_time_usage; | |
4388 | 54 extern vo_vaa_t vo_vaa; |
2563 | 55 |
2184 | 56 #include "postproc/postprocess.h" |
57 | |
3144 | 58 #include "cpudetect.h" |
59 | |
2563 | 60 int divx_quality=0; |
1294 | 61 |
4902
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
62 static vd_functions_t* mpvdec=NULL; |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
63 |
1429 | 64 int get_video_quality_max(sh_video_t *sh_video){ |
4898 | 65 // switch(sh_video->codec->driver){ |
1429 | 66 return 0; |
67 } | |
68 | |
69 void set_video_quality(sh_video_t *sh_video,int quality){ | |
4898 | 70 // switch(sh_video->codec->driver){ |
1429 | 71 } |
72 | |
4395 | 73 int set_video_colors(sh_video_t *sh_video,char *item,int value) |
74 { | |
75 if(vo_vaa.get_video_eq) | |
4388 | 76 { |
4395 | 77 vidix_video_eq_t veq; |
78 if(vo_vaa.get_video_eq(&veq) == 0) | |
4388 | 79 { |
4395 | 80 int v_hw_equ_cap = veq.cap; |
81 if(v_hw_equ_cap != 0) | |
82 { | |
83 if(vo_vaa.set_video_eq) | |
84 { | |
85 vidix_video_eq_t veq; | |
86 veq.flags = VEQ_FLG_ITU_R_BT_601; /* Fixme please !!! */ | |
87 if(strcmp(item,"Brightness") == 0) | |
88 { | |
89 if(!(v_hw_equ_cap & VEQ_CAP_BRIGHTNESS)) goto try_sw_control; | |
90 veq.brightness = value*10; | |
91 veq.cap = VEQ_CAP_BRIGHTNESS; | |
92 } | |
93 else | |
94 if(strcmp(item,"Contrast") == 0) | |
95 { | |
96 if(!(v_hw_equ_cap & VEQ_CAP_CONTRAST)) goto try_sw_control; | |
97 veq.contrast = value*10; | |
98 veq.cap = VEQ_CAP_CONTRAST; | |
99 } | |
100 else | |
101 if(strcmp(item,"Saturation") == 0) | |
102 { | |
103 if(!(v_hw_equ_cap & VEQ_CAP_SATURATION)) goto try_sw_control; | |
104 veq.saturation = value*10; | |
105 veq.cap = VEQ_CAP_SATURATION; | |
106 } | |
107 else | |
108 if(strcmp(item,"Hue") == 0) | |
109 { | |
110 if(!(v_hw_equ_cap & VEQ_CAP_HUE)) goto try_sw_control; | |
111 veq.hue = value*10; | |
112 veq.cap = VEQ_CAP_HUE; | |
113 } | |
114 else goto try_sw_control;; | |
115 vo_vaa.set_video_eq(&veq); | |
116 } | |
117 return 1; | |
118 } | |
4388 | 119 } |
120 } | |
4395 | 121 try_sw_control: |
2938
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
122 |
4898 | 123 |
1429 | 124 return 0; |
125 } | |
1294 | 126 |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
127 void uninit_video(sh_video_t *sh_video){ |
1654 | 128 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
|
129 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
|
130 mpvdec->uninit(sh_video); |
1654 | 131 sh_video->inited=0; |
132 } | |
133 | |
4453 | 134 int init_video(sh_video_t *sh_video,int *pitches) |
135 { | |
4902
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
136 //unsigned int out_fmt=sh_video->codec->outfmt[sh_video->outfmtidx]; |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
137 int i; |
4453 | 138 pitches[0] = pitches[1] =pitches[2] = 0; /* fake unknown */ |
1294 | 139 |
4902
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
140 //sh_video->our_out_buffer=NULL; |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
141 //sh_video->our_out_buffer_size=0U; |
1454
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
142 |
4902
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
143 for (i=0; mpcodecs_vd_drivers[i] != NULL; i++) |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
144 if(mpcodecs_vd_drivers[i]->info->id==sh_video->codec->driver){ |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
145 mpvdec=mpcodecs_vd_drivers[i]; break; |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
146 } |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
147 if(!mpvdec) return 0; // no such driver |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
148 |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
149 printf("Selecting Video Decoder: [%s] %s\n",mpvdec->info->short_name,mpvdec->info->name); |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
150 |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
151 if(!mpvdec->init(sh_video)){ |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
152 printf("VDecoder init failed :(\n"); |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
153 return 0; |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
154 } |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
155 |
1654 | 156 sh_video->inited=1; |
1294 | 157 return 1; |
158 } | |
159 | |
4494 | 160 extern int vaa_use_dr; |
4515 | 161 |
4741 | 162 static int use_dr=0,use_dr_422=0; |
4515 | 163 static bes_da_t bda; |
4741 | 164 void init_video_vaa( unsigned width ) |
4515 | 165 { |
4745
398e3663ed71
Allow using direct rendering with any HW pitches (even on matrox g400).
nick
parents:
4741
diff
changeset
|
166 unsigned adp; |
4515 | 167 memset(&bda,0,sizeof(bes_da_t)); |
168 if(vo_vaa.query_bes_da) | |
169 use_dr = vo_vaa.query_bes_da(&bda) ? 0 : 1; | |
170 if(!vaa_use_dr) use_dr = 0; | |
4745
398e3663ed71
Allow using direct rendering with any HW pitches (even on matrox g400).
nick
parents:
4741
diff
changeset
|
171 if(use_dr) |
398e3663ed71
Allow using direct rendering with any HW pitches (even on matrox g400).
nick
parents:
4741
diff
changeset
|
172 { |
398e3663ed71
Allow using direct rendering with any HW pitches (even on matrox g400).
nick
parents:
4741
diff
changeset
|
173 uint32_t sstride,dstride; |
398e3663ed71
Allow using direct rendering with any HW pitches (even on matrox g400).
nick
parents:
4741
diff
changeset
|
174 sstride=width*2; |
398e3663ed71
Allow using direct rendering with any HW pitches (even on matrox g400).
nick
parents:
4741
diff
changeset
|
175 adp = bda.dest.pitch.y-1; |
398e3663ed71
Allow using direct rendering with any HW pitches (even on matrox g400).
nick
parents:
4741
diff
changeset
|
176 dstride=(width*2+adp)&~adp; |
398e3663ed71
Allow using direct rendering with any HW pitches (even on matrox g400).
nick
parents:
4741
diff
changeset
|
177 if(sstride == dstride) use_dr_422 = 1; |
398e3663ed71
Allow using direct rendering with any HW pitches (even on matrox g400).
nick
parents:
4741
diff
changeset
|
178 } |
4515 | 179 } |
180 | |
1294 | 181 int decode_video(vo_functions_t *video_out,sh_video_t *sh_video,unsigned char *start,int in_size,int drop_frame){ |
4898 | 182 mp_image_t *mpi=NULL; |
1294 | 183 int blit_frame=0; |
1360 | 184 unsigned int t=GetTimer(); |
185 unsigned int t2; | |
4834 | 186 double tt; |
1360 | 187 |
4902
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
188 mpi=mpvdec->decode(sh_video, start, in_size, drop_frame); |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
189 |
1294 | 190 //------------------------ frame decoded. -------------------- |
191 | |
3160 | 192 #ifdef ARCH_X86 |
1367 | 193 // some codecs is broken, and doesn't restore MMX state :( |
194 // it happens usually with broken/damaged files. | |
3144 | 195 if(gCpuCaps.has3DNow){ |
196 __asm __volatile ("femms\n\t":::"memory"); | |
197 } | |
198 else if(gCpuCaps.hasMMX){ | |
199 __asm __volatile ("emms\n\t":::"memory"); | |
200 } | |
3160 | 201 #endif |
1367 | 202 |
4902
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
203 if(!mpi) return 0; // error / skipped frame |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
204 |
4834 | 205 t2=GetTimer();t=t2-t; |
206 tt = t*0.000001f; | |
207 video_time_usage+=tt; | |
4844
76acf5bbda78
exclude benchmark stuff execution from normal playback
nick
parents:
4838
diff
changeset
|
208 if(benchmark) |
76acf5bbda78
exclude benchmark stuff execution from normal playback
nick
parents:
4838
diff
changeset
|
209 { |
76acf5bbda78
exclude benchmark stuff execution from normal playback
nick
parents:
4838
diff
changeset
|
210 if(tt > max_video_time_usage) max_video_time_usage=tt; |
76acf5bbda78
exclude benchmark stuff execution from normal playback
nick
parents:
4838
diff
changeset
|
211 cur_video_time_usage=tt; |
76acf5bbda78
exclude benchmark stuff execution from normal playback
nick
parents:
4838
diff
changeset
|
212 } |
4898 | 213 |
4902
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
214 if(!(mpi->flags&(MP_IMGFLAG_DIRECT|MP_IMGFLAG_DRAW_CALBACK))){ |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
215 // blit frame: |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
216 if(mpi->flags&MP_IMGFLAG_PLANAR) |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
217 video_out->draw_slice(mpi->planes,mpi->stride,sh_video->disp_w,sh_video->disp_h,0,0); |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
218 else |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
219 video_out->draw_frame(mpi->planes); |
7c4edfe929c8
implemented basic wrapper functions to new libmpcodecs api
arpi
parents:
4901
diff
changeset
|
220 } |
4898 | 221 |
4834 | 222 t2=GetTimer()-t2; |
223 tt=t2*0.000001f; | |
224 vout_time_usage+=tt; | |
4844
76acf5bbda78
exclude benchmark stuff execution from normal playback
nick
parents:
4838
diff
changeset
|
225 if(benchmark) |
76acf5bbda78
exclude benchmark stuff execution from normal playback
nick
parents:
4838
diff
changeset
|
226 { |
76acf5bbda78
exclude benchmark stuff execution from normal playback
nick
parents:
4838
diff
changeset
|
227 if(tt > max_vout_time_usage) max_vout_time_usage = tt; |
76acf5bbda78
exclude benchmark stuff execution from normal playback
nick
parents:
4838
diff
changeset
|
228 cur_vout_time_usage=tt; |
76acf5bbda78
exclude benchmark stuff execution from normal playback
nick
parents:
4838
diff
changeset
|
229 } |
1360 | 230 blit_frame=1; |
231 | |
1294 | 232 return blit_frame; |
233 } | |
1375
dbcb5b5e1fae
file-format detection stuff moved out from mplayer.c to demuxer.c and dec_video.c
arpi
parents:
1367
diff
changeset
|
234 |
2827
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
235 |