videotemplate.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:3k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*****************************************************************************
  2.  *
  3.  * This program is free software ; you can redistribute it and/or modify
  4.  * it under the terms of the GNU General Public License as published by
  5.  * the Free Software Foundation; either version 2 of the License, or
  6.  * (at your option) any later version.
  7.  *
  8.  * This program is distributed in the hope that it will be useful,
  9.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11.  * GNU General Public License for more details.
  12.  *
  13.  * You should have received a copy of the GNU General Public License
  14.  * along with this program; if not, write to the Free Software
  15.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  16.  *
  17.  * $Id: videotemplate.c 543 2006-01-07 22:06:24Z picard $
  18.  *
  19.  * The Core Pocket Media Player
  20.  * Copyright (c) 2004-2005 Gabor Kovacs
  21.  *
  22.  ****************************************************************************/
  23. #include "../common/common.h"
  24. #include "videotemplate.h"
  25. typedef struct video_template
  26. {
  27. codec Codec;
  28. nodeget GetInherited;
  29. nodeset SetInherited;
  30. int BufferSize;
  31. int YSize;
  32. uint8_t* Buffer;
  33. int Pos;
  34. } video_template;
  35. static int UpdateInput( video_template* p )
  36. {
  37. free(p->Buffer);
  38. p->Buffer = NULL;
  39. if (p->Codec.In.Format.Type == PACKET_VIDEO)
  40. {
  41. PacketFormatClear(&p->Codec.Out.Format);
  42. p->Codec.Out.Format.Type = PACKET_VIDEO;
  43. p->Codec.Out.Format.Format.Video.Pixel.Flags = PF_FOURCC;
  44. p->Codec.Out.Format.Format.Video.Pixel.FourCC = FOURCC_I420;
  45. p->Codec.Out.Format.Format.Video.Width = p->Codec.In.Format.Format.Video.Width;
  46. p->Codec.Out.Format.Format.Video.Height = p->Codec.In.Format.Format.Video.Height;
  47. p->Codec.Out.Format.Format.Video.Pitch = p->Codec.In.Format.Format.Video.Width;
  48. p->YSize = p->Codec.Out.Format.Format.Video.Width*p->Codec.Out.Format.Format.Video.Height;
  49. p->BufferSize = p->YSize+(p->YSize/2);
  50. p->Buffer = (uint8_t*) malloc(p->BufferSize);
  51. if (!p->Buffer)
  52. return ERR_OUT_OF_MEMORY;
  53. memset(p->Buffer,128,p->BufferSize);
  54. memset(p->Buffer,0,p->YSize);
  55. p->Pos = 0;
  56. }
  57. return ERR_NONE;
  58. }
  59. static int Process( video_template* p, const packet* Packet, const flowstate* State )
  60. {
  61. if (!Packet)
  62. return ERR_NEED_MORE_DATA;
  63. if (State->DropLevel)
  64. return p->Codec.Out.Process(p->Codec.Out.Pin.Node,NULL,State);
  65. p->Codec.Packet.RefTime = Packet->RefTime; 
  66. p->Codec.Packet.Data[0] = p->Buffer;
  67. p->Codec.Packet.Length = p->BufferSize;
  68. // draw one pixel in Y plane
  69. p->Buffer[p->Pos++ % p->YSize] = 255;
  70. return ERR_NONE;
  71. }
  72. static int Flush( video_template* p )
  73. {
  74. memset(p->Buffer,0,p->YSize);
  75. p->Pos = 0;
  76. return ERR_NONE;
  77. }
  78. static int Create( video_template* p )
  79. {
  80. p->Codec.Process = (packetprocess)Process;
  81. p->Codec.UpdateInput = (nodefunc)UpdateInput;
  82. p->Codec.Flush = (nodefunc)Flush;
  83. return ERR_NONE;
  84. }
  85. static const nodedef Template =
  86. {
  87. sizeof(video_template),
  88. VIDEO_TEMPLATE_ID,
  89. CODEC_CLASS,
  90. PRI_DEFAULT+10, // use higher priorty as defualt MPEG4 codec so this example can override it
  91. (nodecreate)Create,
  92. NULL,
  93. };
  94. void Video_Init()
  95. {
  96. StringAdd(1,VIDEO_TEMPLATE_ID,NODE_NAME,T("Video template codec"));
  97. StringAdd(1,VIDEO_TEMPLATE_ID,NODE_CONTENTTYPE,T("vcodec/dx50,vcodec/xvid"));
  98. NodeRegisterClass(&Template); 
  99. }
  100. void Video_Done()
  101. {
  102. NodeUnRegisterClass(VIDEO_TEMPLATE_ID);
  103. }