Mercurial > mplayer.hg
comparison libvo/vo_wii.c @ 36517:5d3f93051de9
Remove empty draw_slice and draw_frame stubs.
Long term, draw_frame should be removed completely.
author | reimar |
---|---|
date | Sat, 18 Jan 2014 21:39:07 +0000 |
parents | ddb45e9443ec |
children |
comparison
equal
deleted
inserted
replaced
36516:b726218447c9 | 36517:5d3f93051de9 |
---|---|
48 #include <sys/kd.h> | 48 #include <sys/kd.h> |
49 #include <linux/fb.h> | 49 #include <linux/fb.h> |
50 | 50 |
51 #include "config.h" | 51 #include "config.h" |
52 #include "video_out.h" | 52 #include "video_out.h" |
53 #define NO_DRAW_FRAME | |
53 #include "video_out_internal.h" | 54 #include "video_out_internal.h" |
54 #include "sub/sub.h" | 55 #include "sub/sub.h" |
55 #include "mp_msg.h" | 56 #include "mp_msg.h" |
56 | 57 |
57 static const vo_info_t info = { | 58 static const vo_info_t info = { |
266 dst = center + fb_line_len * y0 + fb_pixel_size * x0; | 267 dst = center + fb_line_len * y0 + fb_pixel_size * x0; |
267 | 268 |
268 vo_draw_alpha_yuy2(w, h, src, srca, stride, dst, fb_line_len); | 269 vo_draw_alpha_yuy2(w, h, src, srca, stride, dst, fb_line_len); |
269 } | 270 } |
270 | 271 |
271 static int draw_frame(uint8_t *src[]) | |
272 { | |
273 return 1; | |
274 } | |
275 | |
276 static int draw_slice(uint8_t *src[], int stride[], int w, int h, int x, int y) | 272 static int draw_slice(uint8_t *src[], int stride[], int w, int h, int x, int y) |
277 { | 273 { |
278 uint8_t *d, *s; | 274 uint8_t *d, *s; |
279 | 275 |
280 d = center + fb_line_len * y + fb_pixel_size * x; | 276 d = center + fb_line_len * y + fb_pixel_size * x; |