comparison libvo/vo_fbdev.c @ 423:bb28d8242239

small change
author szabii
date Sat, 14 Apr 2001 22:49:35 +0000
parents d75c826a8ab9
children 1897ed6661bf
comparison
equal deleted inserted replaced
422:eb04cde16bde 423:bb28d8242239
1047 { 1047 {
1048 int i, out_offset = 0, in_offset = 0; 1048 int i, out_offset = 0, in_offset = 0;
1049 1049
1050 for (i = 0; i < in_height; i++) { 1050 for (i = 0; i < in_height; i++) {
1051 memcpy(frame_buffer + out_offset, next_frame + in_offset, 1051 memcpy(frame_buffer + out_offset, next_frame + in_offset,
1052 in_width * fb_pixel_size); 1052 in_width * fb_pixel_size);
1053 out_offset += fb_screen_width; 1053 out_offset += fb_screen_width;
1054 in_offset += in_width * fb_pixel_size; 1054 in_offset += in_width * fb_pixel_size;
1055 } 1055 }
1056 } 1056 }
1057 1057