display_mga_vid.c
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:3k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /* 
  2.  *    display_mga_vid.c
  3.  *
  4.  * Copyright (C) Aaron Holtzman - Aug 1999
  5.  *
  6.  *  This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
  7.  *
  8.  *  mpeg2dec is free software; you can redistribute it and/or modify
  9.  *  it under the terms of the GNU General Public License as published by
  10.  *  the Free Software Foundation; either version 2, or (at your option)
  11.  *  any later version.
  12.  *   
  13.  *  mpeg2dec is distributed in the hope that it will be useful,
  14.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  *  GNU General Public License for more details.
  17.  *   
  18.  *  You should have received a copy of the GNU General Public License
  19.  *  along with GNU Make; see the file COPYING.  If not, write to
  20.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  21.  *
  22.  */
  23. #include <stddef.h>
  24. #include <stdlib.h>
  25. #include <stdio.h>
  26. #include <sys/ioctl.h>
  27. #include <unistd.h>
  28. #include <fcntl.h>
  29. #include <sys/mman.h>
  30. #include "debug.h"
  31. #include "mpeg2.h"
  32. #include "mpeg2_internal.h"
  33. #include "drivers/mga_vid.h"
  34. #include "display.h"
  35. mga_vid_config_t mga_vid_config;
  36. uint_8 *vid_data;
  37. void
  38. write_frame_g200(uint_8 *y,uint_8 *cr, uint_8 *cb)
  39. {
  40. uint_8 *dest;
  41. uint_32 bespitch,h,w;
  42. dest = vid_data;
  43. bespitch = (mga_vid_config.src_width + 31) & ~31;
  44. for(h=0; h < mga_vid_config.src_height; h++)
  45. {
  46. memcpy(dest, y, mga_vid_config.src_width);
  47. y += mga_vid_config.src_width;
  48. dest += bespitch;
  49. }
  50. for(h=0; h < mga_vid_config.src_height/2; h++)
  51. {
  52. for(w=0; w < mga_vid_config.src_width/2; w++)
  53. {
  54. *dest++ = *cb++;
  55. *dest++ = *cr++;
  56. }
  57. dest += bespitch - mga_vid_config.src_width;
  58. }
  59. }
  60. void
  61. write_frame_g400(uint_8 *y,uint_8 *cr, uint_8 *cb)
  62. {
  63. uint_8 *dest;
  64. uint_32 bespitch,h;
  65. dest = vid_data;
  66. bespitch = (mga_vid_config.src_width + 31) & ~31;
  67. for(h=0; h < mga_vid_config.src_height; h++) 
  68. {
  69. memcpy(dest, y, mga_vid_config.src_width);
  70. y += mga_vid_config.src_width;
  71. dest += bespitch;
  72. }
  73. for(h=0; h < mga_vid_config.src_height/2; h++) 
  74. {
  75. memcpy(dest, cb, mga_vid_config.src_width/2);
  76. cb += mga_vid_config.src_width/2;
  77. dest += bespitch/2;
  78. }
  79. for(h=0; h < mga_vid_config.src_height/2; h++) 
  80. {
  81. memcpy(dest, cr, mga_vid_config.src_width/2);
  82. cr += mga_vid_config.src_width/2;
  83. dest += bespitch/2;
  84. }
  85. }
  86. void
  87. display_frame(uint_8 *src[])
  88. {
  89.   if (mga_vid_config.card_type == MGA_G200)
  90. write_frame_g200(src[0], src[2], src[1]);
  91.   else
  92. write_frame_g400(src[0], src[2], src[1]);
  93. }
  94. void 
  95. display_init(uint_32 width, uint_32 height)
  96. {
  97. int f;
  98. uint_32 frame_size;
  99. f = open("/dev/mga_vid",O_RDWR);
  100. if(f == -1)
  101. {
  102. fprintf(stderr,"Couldn't open /dev/mga_vidn");
  103. exit(1);
  104. }
  105. mga_vid_config.src_width = width;
  106. mga_vid_config.src_height= height;
  107. mga_vid_config.dest_width = width;
  108. mga_vid_config.dest_height= height;
  109. mga_vid_config.x_org= 10;
  110. mga_vid_config.y_org= 10;
  111. if (ioctl(f,MGA_VID_CONFIG,&mga_vid_config))
  112. {
  113. perror("Error in mga_vid_config ioctl");
  114. }
  115. ioctl(f,MGA_VID_ON,0);
  116. frame_size = ((width + 31) & ~31) * height + (((width + 31) & ~31) * height) / 2;
  117. vid_data = (char*)mmap(0,frame_size,PROT_WRITE,MAP_SHARED,f,0);
  118. //clear the buffer
  119. memset(vid_data,0x80,frame_size);
  120. dprintf("(display) mga_vid initialized %pn",vid_data);
  121. }