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

DVD

开发平台:

Unix_Linux

  1. /* 
  2.  *    display.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 "drivers/mga_vid.h"
  31. #include "old_config.h"
  32. #include "global.h"
  33. typedef struct mga_vid_config_s
  34. {
  35. uint_32 width;
  36. uint_32 height;
  37. uint_32 x_org;
  38. uint_32 y_org;
  39. } mga_vid_config_t;
  40. #define MGA_VID_CONFIG _IOR('J', 1, mga_vid_config_t)
  41. #define MGA_VID_ON     _IO ('J', 2)
  42. #define MGA_VID_OFF    _IO ('J', 3)
  43. mga_vid_config_t config;
  44. char* vid_data;
  45. void do_display(unsigned char *src[])
  46. {
  47. int i,j;
  48. uint_32 *dest;
  49. uint_32 *source;
  50. dest = vid_data;
  51. source = src[0];
  52. for(j=0;j < Coded_Picture_Height; j++)
  53. {
  54. for(i=0;i< Coded_Picture_Width/4; i++)
  55. *dest++ = *source++;
  56. dest +=16/4;
  57. }
  58. source = src[1];
  59. for(j=0;j < Coded_Picture_Height/2 ; j++)
  60. {
  61. for(i=0;i< Coded_Picture_Width/(2*4) ; i++)
  62. *dest++ = *source++;
  63. dest +=8/4;
  64. }
  65. source = src[2];
  66. for(j=0;j < Coded_Picture_Height/2 ; j++)
  67. {
  68. for(i=0;i< Coded_Picture_Width/(2*4) ; i++)
  69. *dest++ = *source++;
  70. dest +=8/4;
  71. }
  72. }
  73. void Display_Second_Field()
  74. {
  75. }
  76. void Terminate_Display_Process()
  77. {
  78. }
  79. void Initialize_Display_Process(char *name)
  80. {
  81. int f;
  82. int i;
  83. f = open("/dev/mga_vid",O_RDWR);
  84. if(!f)
  85. {
  86. fprintf(stderr,"Couldn't open drivern");
  87. exit(1);
  88. }
  89. config.width = Coded_Picture_Width;
  90. config.height= Coded_Picture_Height;
  91. config.x_org= 10;
  92. config.y_org= 10;
  93. if (ioctl(f,MGA_VID_CONFIG,&config))
  94. {
  95. perror("Error in config ioctl");
  96. }
  97. //ioctl(f,MGA_VID_ON,0);
  98. vid_data = (char*)mmap(0,204 * 4096,PROT_WRITE,MAP_SHARED,f,0);
  99. printf("vid_data = 0x%08xn",vid_data);
  100. }