Mercurial > mplayer.hg
annotate libvo/vo_dxr3.c @ 3916:8e7f959ad024
FreeBSD need EXTRA_LIB to compile
author | nexus |
---|---|
date | Mon, 31 Dec 2001 10:03:10 +0000 |
parents | f832811cf89a |
children | 7c07bc1e0a81 |
rev | line source |
---|---|
2645 | 1 /* |
2 * vo_dxr3.c - DXR3/H+ video out | |
3 * | |
4 * Copyright (C) 2001 David Holm <dholm@iname.com> | |
5 * | |
6 */ | |
7 | |
8 #include "fastmemcpy.h" | |
9 #include <stdio.h> | |
10 #include <stdlib.h> | |
11 #include <string.h> | |
2921 | 12 #include <unistd.h> |
13 #include <linux/em8300.h> | |
14 #include <sys/ioctl.h> | |
15 #include <sys/stat.h> | |
16 #include <sys/types.h> | |
17 #include <fcntl.h> | |
2645 | 18 #include <stdio.h> |
19 #include <time.h> | |
20 | |
21 #include "config.h" | |
22 #include "video_out.h" | |
23 #include "video_out_internal.h" | |
3432 | 24 #ifdef USE_MP1E |
3333
5c6cdf5490f0
Minor typo fix (which I thought I commited yesterday)
mswitch
parents:
3329
diff
changeset
|
25 #include "../libmp1e/libmp1e.h" |
3432 | 26 #endif |
2645 | 27 |
2866
4f6190ab52e7
Added a temporary fix to the DXR3 win32 codec playback, win32 codecs might prove to play back an unscaled image!
mswitch
parents:
2770
diff
changeset
|
28 #include "../postproc/rgb2rgb.h" |
2645 | 29 #ifdef HAVE_MMX |
30 #include "mmx.h" | |
31 #endif | |
32 | |
3639
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
33 #include "aspect.h" |
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
34 |
2645 | 35 LIBVO_EXTERN (dxr3) |
36 | |
3432 | 37 #ifdef USE_MP1E |
3329
529a001496c2
Switched from rte which caused alot of problems for some users to libmp1e.
mswitch
parents:
3232
diff
changeset
|
38 rte_context *mp1e_context = NULL; |
529a001496c2
Switched from rte which caused alot of problems for some users to libmp1e.
mswitch
parents:
3232
diff
changeset
|
39 rte_codec *mp1e_codec = NULL; |
3201 | 40 rte_buffer mp1e_buffer; |
3432 | 41 #endif |
2645 | 42 |
3201 | 43 static unsigned char *picture_data[3]; |
44 static unsigned int picture_linesize[3]; | |
3329
529a001496c2
Switched from rte which caused alot of problems for some users to libmp1e.
mswitch
parents:
3232
diff
changeset
|
45 |
2770 | 46 static int v_width,v_height; |
2866
4f6190ab52e7
Added a temporary fix to the DXR3 win32 codec playback, win32 codecs might prove to play back an unscaled image!
mswitch
parents:
2770
diff
changeset
|
47 static int s_width,s_height; |
2645 | 48 static int s_pos_x,s_pos_y; |
49 static int d_pos_x,d_pos_y; | |
50 static int osd_w,osd_h; | |
3329
529a001496c2
Switched from rte which caused alot of problems for some users to libmp1e.
mswitch
parents:
3232
diff
changeset
|
51 |
2770 | 52 static int img_format = 0; |
3329
529a001496c2
Switched from rte which caused alot of problems for some users to libmp1e.
mswitch
parents:
3232
diff
changeset
|
53 |
2921 | 54 static int fd_control = -1; |
55 static int fd_video = -1; | |
56 static int fd_spu = -1; | |
57 static int ioval = 0; | |
2645 | 58 |
59 static vo_info_t vo_info = | |
60 { | |
61 "DXR3/H+ video out", | |
62 "dxr3", | |
63 "David Holm <dholm@iname.com>", | |
64 "" | |
65 }; | |
66 | |
3432 | 67 #ifdef USE_MP1E |
3201 | 68 void write_dxr3( rte_context* context, void* data, size_t size, void* user_data ) |
69 { | |
3828 | 70 if(ioctl(fd_video,EM8300_IOCTL_VIDEO_SETPTS,&vo_pts) < 0) |
71 printf( "VO: [dxr3] Unable to set pts\n" ); | |
3201 | 72 write( fd_video, data, size ); |
73 } | |
3432 | 74 #endif |
3201 | 75 |
3218
8ba06b63f873
Fix green borders -> black borders, patch from D. Holm, also small fix to dxr3 ao.
atmos4
parents:
3208
diff
changeset
|
76 static uint32_t init(uint32_t scr_width, uint32_t scr_height, uint32_t width, uint32_t height, uint32_t fullscreen, char *title, uint32_t format) |
2645 | 77 { |
3639
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
78 int tmp1,tmp2; |
2921 | 79 fd_control = open( "/dev/em8300", O_WRONLY ); |
80 if( fd_control < 1 ) | |
2645 | 81 { |
2921 | 82 printf( "VO: [dxr3] Error opening /dev/em8300 for writing!\n" ); |
83 return -1; | |
84 } | |
85 fd_video = open( "/dev/em8300_mv", O_WRONLY ); | |
86 if( fd_video < 0 ) | |
87 { | |
88 printf( "VO: [dxr3] Error opening /dev/em8300_mv for writing!\n" ); | |
89 return -1; | |
90 } | |
91 else printf( "VO: [dxr3] Opened /dev/em8300_mv\n" ); | |
92 fd_spu = open( "/dev/em8300_sp", O_WRONLY ); | |
93 if( fd_spu < 0 ) | |
94 { | |
95 printf( "VO: [dxr3] Error opening /dev/em8300_sp for writing!\n" ); | |
96 return -1; | |
2645 | 97 } |
98 | |
2770 | 99 /* Subpic code isn't working yet, don't set to ON |
100 unless you are really sure what you are doing */ | |
2921 | 101 ioval = EM8300_SPUMODE_OFF; |
102 if( ioctl( fd_control, EM8300_IOCTL_SET_SPUMODE, &ioval ) < 0 ) | |
103 { | |
104 printf( "VO: [dxr3] Unable to set subpicture mode!\n" ); | |
105 return -1; | |
106 } | |
107 | |
108 ioval = EM8300_PLAYMODE_PLAY; | |
2968 | 109 if( ioctl( fd_control, EM8300_IOCTL_SET_PLAYMODE, &ioval ) < 0 ) |
2921 | 110 printf( "VO: [dxr3] Unable to set playmode!\n" ); |
111 | |
2645 | 112 img_format = format; |
3861
f832811cf89a
Some last minute changes to accomodate for anamorphic 1.85:1 and 2.35:1 movies... Needs more work, but this is good enough for now.
mswitch
parents:
3828
diff
changeset
|
113 v_width = scr_width; |
f832811cf89a
Some last minute changes to accomodate for anamorphic 1.85:1 and 2.35:1 movies... Needs more work, but this is good enough for now.
mswitch
parents:
3828
diff
changeset
|
114 v_height = scr_height; |
2921 | 115 |
3639
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
116 /* Calculate screen res */ |
3861
f832811cf89a
Some last minute changes to accomodate for anamorphic 1.85:1 and 2.35:1 movies... Needs more work, but this is good enough for now.
mswitch
parents:
3828
diff
changeset
|
117 /*aspect_save_orig(v_width,v_height); |
f832811cf89a
Some last minute changes to accomodate for anamorphic 1.85:1 and 2.35:1 movies... Needs more work, but this is good enough for now.
mswitch
parents:
3828
diff
changeset
|
118 aspect_save_prescale(width,height); |
f832811cf89a
Some last minute changes to accomodate for anamorphic 1.85:1 and 2.35:1 movies... Needs more work, but this is good enough for now.
mswitch
parents:
3828
diff
changeset
|
119 aspect_save_screenres(702,575);*/ /* Reference values from DVD spec (711,483) (702,575) */ |
f832811cf89a
Some last minute changes to accomodate for anamorphic 1.85:1 and 2.35:1 movies... Needs more work, but this is good enough for now.
mswitch
parents:
3828
diff
changeset
|
120 /*aspect(&s_width,&s_height,A_ZOOM);*/ |
f832811cf89a
Some last minute changes to accomodate for anamorphic 1.85:1 and 2.35:1 movies... Needs more work, but this is good enough for now.
mswitch
parents:
3828
diff
changeset
|
121 s_width = (v_width+15)/16; s_width*=16; |
f832811cf89a
Some last minute changes to accomodate for anamorphic 1.85:1 and 2.35:1 movies... Needs more work, but this is good enough for now.
mswitch
parents:
3828
diff
changeset
|
122 s_height = (v_height+15)/16; s_height*=16; |
3639
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
123 |
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
124 /* Try to figure out whether to use ws output or not */ |
3861
f832811cf89a
Some last minute changes to accomodate for anamorphic 1.85:1 and 2.35:1 movies... Needs more work, but this is good enough for now.
mswitch
parents:
3828
diff
changeset
|
125 tmp1 = abs(height - ((width/4)*3)); |
f832811cf89a
Some last minute changes to accomodate for anamorphic 1.85:1 and 2.35:1 movies... Needs more work, but this is good enough for now.
mswitch
parents:
3828
diff
changeset
|
126 tmp2 = abs(height - (int)(width/2.35)); |
f832811cf89a
Some last minute changes to accomodate for anamorphic 1.85:1 and 2.35:1 movies... Needs more work, but this is good enough for now.
mswitch
parents:
3828
diff
changeset
|
127 printf( "%d:%d\n",s_width,s_height); |
3639
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
128 if(tmp1 < tmp2) |
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
129 { |
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
130 tmp1 = EM8300_ASPECTRATIO_4_3; |
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
131 printf( "VO: [dxr3] Setting aspect ratio to 4:3\n" ); |
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
132 } |
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
133 else |
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
134 { |
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
135 tmp1 = EM8300_ASPECTRATIO_16_9; |
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
136 printf( "VO: [dxr3] Setting aspect ratio to 16:9\n" ); |
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
137 } |
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
138 ioctl(fd_control,EM8300_IOCTL_SET_ASPECTRATIO,&tmp1); |
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
139 close(fd_control); |
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
140 |
3232
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
141 if( format == IMGFMT_YV12 || format == IMGFMT_YUY2 || format == IMGFMT_BGR24 ) |
2645 | 142 { |
3432 | 143 #ifdef USE_MP1E |
2645 | 144 int size; |
3201 | 145 enum rte_frame_rate frame_rate; |
3630
f24527fc1b79
Removed conversion for yuy2, libmp1e supports this format, no need to cnovert it...
mswitch
parents:
3629
diff
changeset
|
146 enum rte_pixformat pixel_format; |
2645 | 147 |
3201 | 148 if( !rte_init() ) |
2968 | 149 { |
3329
529a001496c2
Switched from rte which caused alot of problems for some users to libmp1e.
mswitch
parents:
3232
diff
changeset
|
150 printf( "VO: [dxr3] Unable to initialize MP1E!\n" ); |
3201 | 151 return -1; |
152 } | |
153 | |
3629
a9d1ee93d1c9
Removed some old libavcodec code which would cause inproper scaling of some movies...
mswitch
parents:
3621
diff
changeset
|
154 mp1e_context = rte_context_new( s_width, s_height, NULL ); |
3201 | 155 rte_set_verbosity( mp1e_context, 0 ); |
156 | |
3629
a9d1ee93d1c9
Removed some old libavcodec code which would cause inproper scaling of some movies...
mswitch
parents:
3621
diff
changeset
|
157 printf( "VO: [dxr3] %dx%d => %dx%d\n", v_width, v_height, s_width, s_height ); |
3232
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
158 |
3201 | 159 if( !mp1e_context ) |
160 { | |
161 printf( "VO: [dxr3] Unable to create context!\n" ); | |
162 return -1; | |
163 } | |
164 | |
165 if( !rte_set_format( mp1e_context, "mpeg1" ) ) | |
166 { | |
167 printf( "VO: [dxr3] Unable to set format\n" ); | |
168 return -1; | |
169 } | |
170 | |
171 rte_set_mode( mp1e_context, RTE_VIDEO ); | |
172 mp1e_codec = rte_codec_set( mp1e_context, RTE_STREAM_VIDEO, 0, "mpeg1-video" ); | |
2866
4f6190ab52e7
Added a temporary fix to the DXR3 win32 codec playback, win32 codecs might prove to play back an unscaled image!
mswitch
parents:
2770
diff
changeset
|
173 |
3201 | 174 if( vo_fps < 24.0 ) frame_rate = RTE_RATE_1; |
175 else if( vo_fps < 25.0 ) frame_rate = RTE_RATE_2; | |
176 else if( vo_fps < 29.97 ) frame_rate = RTE_RATE_3; | |
177 else if( vo_fps < 30.0 ) frame_rate = RTE_RATE_4; | |
178 else if( vo_fps < 50.0 ) frame_rate = RTE_RATE_5; | |
179 else if( vo_fps < 59.97 ) frame_rate = RTE_RATE_6; | |
180 else if( vo_fps < 60.0 ) frame_rate = RTE_RATE_7; | |
181 else if( vo_fps > 60.0 ) frame_rate = RTE_RATE_8; | |
182 else frame_rate = RTE_RATE_NORATE; | |
183 | |
3630
f24527fc1b79
Removed conversion for yuy2, libmp1e supports this format, no need to cnovert it...
mswitch
parents:
3629
diff
changeset
|
184 if( format == IMGFMT_YUY2 ) |
f24527fc1b79
Removed conversion for yuy2, libmp1e supports this format, no need to cnovert it...
mswitch
parents:
3629
diff
changeset
|
185 pixel_format = RTE_YUYV; |
f24527fc1b79
Removed conversion for yuy2, libmp1e supports this format, no need to cnovert it...
mswitch
parents:
3629
diff
changeset
|
186 else |
f24527fc1b79
Removed conversion for yuy2, libmp1e supports this format, no need to cnovert it...
mswitch
parents:
3629
diff
changeset
|
187 pixel_format = RTE_YUV420; |
f24527fc1b79
Removed conversion for yuy2, libmp1e supports this format, no need to cnovert it...
mswitch
parents:
3629
diff
changeset
|
188 if( !rte_set_video_parameters( mp1e_context, pixel_format, mp1e_context->width, |
3201 | 189 mp1e_context->height, frame_rate, |
3828 | 190 3e6, "I" ) ) |
3201 | 191 { |
3329
529a001496c2
Switched from rte which caused alot of problems for some users to libmp1e.
mswitch
parents:
3232
diff
changeset
|
192 printf( "VO: [dxr3] Unable to set mp1e context!\n" ); |
3201 | 193 rte_context_destroy( mp1e_context ); |
194 return -1; | |
195 } | |
196 | |
197 rte_set_input( mp1e_context, RTE_VIDEO, RTE_PUSH, TRUE, NULL, NULL, NULL ); | |
3208 | 198 rte_set_output( mp1e_context, (void*)write_dxr3, NULL, NULL ); |
3201 | 199 |
200 if( !rte_init_context( mp1e_context ) ) | |
201 { | |
3329
529a001496c2
Switched from rte which caused alot of problems for some users to libmp1e.
mswitch
parents:
3232
diff
changeset
|
202 printf( "VO: [dxr3] Unable to init mp1e context!\n" ); |
3201 | 203 rte_context_delete( mp1e_context ); |
204 return -1; | |
205 } | |
206 | |
3629
a9d1ee93d1c9
Removed some old libavcodec code which would cause inproper scaling of some movies...
mswitch
parents:
3621
diff
changeset
|
207 osd_w=s_width; |
a9d1ee93d1c9
Removed some old libavcodec code which would cause inproper scaling of some movies...
mswitch
parents:
3621
diff
changeset
|
208 d_pos_x=(s_width-v_width)/2; |
3208 | 209 if(d_pos_x<0) |
210 { | |
211 s_pos_x=-d_pos_x;d_pos_x=0; | |
3629
a9d1ee93d1c9
Removed some old libavcodec code which would cause inproper scaling of some movies...
mswitch
parents:
3621
diff
changeset
|
212 osd_w=s_width; |
2645 | 213 } else s_pos_x=0; |
214 | |
3629
a9d1ee93d1c9
Removed some old libavcodec code which would cause inproper scaling of some movies...
mswitch
parents:
3621
diff
changeset
|
215 osd_h=s_height; |
a9d1ee93d1c9
Removed some old libavcodec code which would cause inproper scaling of some movies...
mswitch
parents:
3621
diff
changeset
|
216 d_pos_y=(s_height-v_height)/2; |
3208 | 217 if(d_pos_y<0) |
218 { | |
219 s_pos_y=-d_pos_y;d_pos_y=0; | |
3629
a9d1ee93d1c9
Removed some old libavcodec code which would cause inproper scaling of some movies...
mswitch
parents:
3621
diff
changeset
|
220 osd_h=s_height; |
2645 | 221 } else s_pos_y=0; |
222 | |
3218
8ba06b63f873
Fix green borders -> black borders, patch from D. Holm, also small fix to dxr3 ao.
atmos4
parents:
3208
diff
changeset
|
223 printf("VO: [dxr3] Position mapping: %d;%d => %d;%d\n",s_pos_x,s_pos_y,d_pos_x,d_pos_y); |
3201 | 224 |
3629
a9d1ee93d1c9
Removed some old libavcodec code which would cause inproper scaling of some movies...
mswitch
parents:
3621
diff
changeset
|
225 size = s_width*s_height; |
3201 | 226 |
3759 | 227 if( format == IMGFMT_YUY2 ) |
228 { | |
229 picture_data[0] = NULL; | |
230 picture_linesize[0] = s_width * 2; | |
231 } | |
232 else | |
233 { | |
234 picture_data[0] = malloc((size * 3)/2); | |
235 picture_data[1] = picture_data[0] + size; | |
236 picture_data[2] = picture_data[1] + size / 4; | |
237 picture_linesize[0] = s_width; | |
238 picture_linesize[1] = s_width / 2; | |
239 picture_linesize[2] = s_width / 2; | |
240 } | |
3218
8ba06b63f873
Fix green borders -> black borders, patch from D. Holm, also small fix to dxr3 ao.
atmos4
parents:
3208
diff
changeset
|
241 |
3201 | 242 |
243 if( !rte_start_encoding( mp1e_context ) ) | |
2968 | 244 { |
3201 | 245 printf( "VO: [dxr3] Unable to start mp1e encoding!\n" ); |
246 uninit(); | |
247 return -1; | |
248 } | |
2770 | 249 |
3639
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
250 if(format == IMGFMT_BGR24) yuv2rgb_init(24, MODE_BGR); |
2770 | 251 return 0; |
3432 | 252 #endif |
253 return -1; | |
2770 | 254 } |
2645 | 255 else if(format==IMGFMT_MPEGPES) |
256 { | |
2921 | 257 printf( "VO: [dxr3] Format: MPEG-PES (no conversion needed)\n" ); |
2645 | 258 return 0; |
259 } | |
260 | |
3614 | 261 printf( "VO: [dxr3] Format: Unsupported\n" ); |
2645 | 262 return -1; |
263 } | |
264 | |
2866
4f6190ab52e7
Added a temporary fix to the DXR3 win32 codec playback, win32 codecs might prove to play back an unscaled image!
mswitch
parents:
2770
diff
changeset
|
265 static const vo_info_t* get_info(void) |
2645 | 266 { |
267 return &vo_info; | |
268 } | |
269 | |
2866
4f6190ab52e7
Added a temporary fix to the DXR3 win32 codec playback, win32 codecs might prove to play back an unscaled image!
mswitch
parents:
2770
diff
changeset
|
270 static void draw_alpha(int x0, int y0, int w, int h, unsigned char* src, unsigned char *srca, int srcstride) |
2645 | 271 { |
3759 | 272 switch(img_format) |
273 { | |
274 case IMGFMT_BGR24: | |
275 case IMGFMT_YV12: | |
276 vo_draw_alpha_yv12(w,h,src,srca,srcstride,picture_data[0]+(x0+d_pos_x)+(y0+d_pos_y)*picture_linesize[0],picture_linesize[0]); | |
277 break; | |
278 case IMGFMT_YUY2: | |
279 vo_draw_alpha_yuy2(w,h,src,srca,srcstride,picture_data[0]+(x0+d_pos_x)*2+(y0+d_pos_y)*picture_linesize[0],picture_linesize[0]); | |
280 break; | |
281 } | |
2645 | 282 } |
283 | |
284 static void draw_osd(void) | |
285 { | |
3759 | 286 vo_draw_text(osd_w,osd_h,draw_alpha); |
2645 | 287 } |
288 | |
289 static uint32_t draw_frame(uint8_t * src[]) | |
290 { | |
291 if( img_format == IMGFMT_MPEGPES ) | |
292 { | |
2770 | 293 int data_left; |
2645 | 294 vo_mpegpes_t *p=(vo_mpegpes_t *)src[0]; |
3201 | 295 |
3828 | 296 if(ioctl(fd_video,EM8300_IOCTL_VIDEO_SETPTS,&vo_pts) < 0) |
297 printf( "VO: [dxr3] Unable to set pts\n" ); | |
2645 | 298 data_left = p->size; |
299 while( data_left ) | |
2921 | 300 data_left -= write( fd_video, &((unsigned char*)p->data)[p->size-data_left], data_left ); |
301 | |
2645 | 302 return 0; |
303 } | |
3432 | 304 #ifdef USE_MP1E |
3208 | 305 else if( img_format == IMGFMT_YUY2 ) |
306 { | |
3759 | 307 picture_data[0] = src[0]; |
3208 | 308 return 0; |
309 } | |
3232
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
310 else if( img_format == IMGFMT_BGR24 ) |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
311 { |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
312 int x,y,w=v_width,h=v_height; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
313 unsigned char *s,*dY,*dU,*dV; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
314 |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
315 if(d_pos_x+w>picture_linesize[0]) w=picture_linesize[0]-d_pos_x; |
3629
a9d1ee93d1c9
Removed some old libavcodec code which would cause inproper scaling of some movies...
mswitch
parents:
3621
diff
changeset
|
316 if(d_pos_y+h>s_height) h=s_height-d_pos_y; |
3232
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
317 |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
318 s = src[0]+s_pos_y*(w*3); |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
319 |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
320 dY = picture_data[0]+d_pos_y*picture_linesize[0]; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
321 dU = picture_data[1]+(d_pos_y/2)*picture_linesize[1]; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
322 dV = picture_data[2]+(d_pos_y/2)*picture_linesize[2]; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
323 |
3639
64ee21b3bd09
Modified the sync code once again, commented out hardware pts sync (I'll likely burn in hell before understanding how to get this bastard to sync well)
mswitch
parents:
3630
diff
changeset
|
324 rgb24toyv12(s,dY,dU,dV,w,h,picture_linesize[0],picture_linesize[1],v_width*3); |
3232
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
325 |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
326 mp1e_buffer.data = picture_data[0]; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
327 mp1e_buffer.time = vo_pts/90000.0; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
328 mp1e_buffer.user_data = NULL; |
3759 | 329 vo_draw_text(osd_w,osd_h,draw_alpha); |
3232
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
330 rte_push_video_buffer( mp1e_context, &mp1e_buffer ); |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
331 |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
332 return 0; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
333 } |
3432 | 334 #endif |
2645 | 335 return -1; |
336 } | |
337 | |
338 static void flip_page (void) | |
339 { | |
3432 | 340 #ifdef USE_MP1E |
3201 | 341 if( img_format == IMGFMT_YV12 ) |
342 { | |
343 mp1e_buffer.data = picture_data[0]; | |
344 mp1e_buffer.time = vo_pts/90000.0; | |
345 mp1e_buffer.user_data = NULL; | |
346 rte_push_video_buffer( mp1e_context, &mp1e_buffer ); | |
347 } | |
3759 | 348 else if( img_format == IMGFMT_YUY2 ) |
349 { | |
350 mp1e_buffer.data = picture_data[0]; | |
351 mp1e_buffer.time = vo_pts/90000.0; | |
352 mp1e_buffer.user_data = NULL; | |
353 rte_push_video_buffer( mp1e_context, &mp1e_buffer ); | |
354 } | |
3432 | 355 #endif |
2645 | 356 } |
357 | |
358 static uint32_t draw_slice( uint8_t *srcimg[], int stride[], int w, int h, int x0, int y0 ) | |
359 { | |
360 if( img_format == IMGFMT_YV12 ) | |
3201 | 361 { |
3232
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
362 int y; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
363 unsigned char *s,*s1; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
364 unsigned char *d,*d1; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
365 |
2645 | 366 x0+=d_pos_x; |
3232
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
367 y0+=d_pos_y; |
3218
8ba06b63f873
Fix green borders -> black borders, patch from D. Holm, also small fix to dxr3 ao.
atmos4
parents:
3208
diff
changeset
|
368 |
3201 | 369 if(x0+w>picture_linesize[0]) w=picture_linesize[0]-x0; |
3629
a9d1ee93d1c9
Removed some old libavcodec code which would cause inproper scaling of some movies...
mswitch
parents:
3621
diff
changeset
|
370 if(y0+h>s_height) h=s_height-y0; |
2645 | 371 |
372 s=srcimg[0]+s_pos_x+s_pos_y*stride[0]; | |
3201 | 373 d=picture_data[0]+x0+y0*picture_linesize[0]; |
3232
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
374 for(y=0;y<h;y++) |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
375 { |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
376 memcpy(d,s,w); |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
377 s+=stride[0]; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
378 d+=picture_linesize[0]; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
379 } |
2645 | 380 |
3218
8ba06b63f873
Fix green borders -> black borders, patch from D. Holm, also small fix to dxr3 ao.
atmos4
parents:
3208
diff
changeset
|
381 w/=2;h/=2;x0/=2;y0/=2; |
8ba06b63f873
Fix green borders -> black borders, patch from D. Holm, also small fix to dxr3 ao.
atmos4
parents:
3208
diff
changeset
|
382 |
3208 | 383 s=srcimg[1]+s_pos_x+s_pos_y*stride[1]; |
3218
8ba06b63f873
Fix green borders -> black borders, patch from D. Holm, also small fix to dxr3 ao.
atmos4
parents:
3208
diff
changeset
|
384 d=picture_data[1]+x0+y0*picture_linesize[1]; |
3232
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
385 s1=srcimg[2]+s_pos_x+s_pos_y*stride[2]; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
386 d1=picture_data[2]+x0+y0*picture_linesize[2]; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
387 for(y=0;y<h;y++) |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
388 { |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
389 memcpy(d,s,w); |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
390 memcpy(d1,s1,w); |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
391 s+=stride[1];s1+=stride[2]; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
392 d+=picture_linesize[1];d1+=picture_linesize[2]; |
d037e1201721
Added support for codecs that supports BGR24 (some opensource codecs and vivo)
mswitch
parents:
3218
diff
changeset
|
393 } |
2645 | 394 |
395 return 0; | |
396 } | |
397 | |
398 return -1; | |
399 } | |
400 | |
401 | |
402 static uint32_t | |
403 query_format(uint32_t format) | |
404 { | |
3828 | 405 if(format==IMGFMT_MPEGPES) return 0x2|0x4|256; |
3432 | 406 #ifdef USE_MP1E |
3828 | 407 if(format==IMGFMT_YV12) return 0x1|0x4|256; |
408 if(format==IMGFMT_YUY2) return 0x1|0x4|256; | |
409 if(format==IMGFMT_BGR24) return 0x1|0x4|256; | |
3374 | 410 else printf( "VO: [dxr3] Format unsupported, mail dholm@iname.com\n" ); |
3432 | 411 #else |
412 else printf( "VO: [dxr3] You have disabled libmp1e support, you won't be able to play this format!\n" ); | |
413 #endif | |
2645 | 414 return 0; |
415 } | |
416 | |
3208 | 417 static void uninit(void) |
2645 | 418 { |
2968 | 419 printf( "VO: [dxr3] Uninitializing\n" ); |
3201 | 420 if( picture_data[0] ) free(picture_data[0]); |
421 if( fd_video ) close(fd_video); | |
422 if( fd_spu ) close(fd_spu); | |
2645 | 423 } |
424 | |
425 | |
426 static void check_events(void) | |
427 { | |
428 } | |
429 |