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

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: dumpoutput.c 271 2005-08-09 08:31:35Z picard $
  18.  *
  19.  * The Core Pocket Media Player
  20.  * Copyright (c) 2004-2005 Gabor Kovacs
  21.  *
  22.  ****************************************************************************/
  23. #include "../common/common.h"
  24. #include "dumpoutput.h"
  25. typedef struct dumpoutput
  26. {
  27. node Node;
  28. pin Pin;
  29. packetformat Format;
  30. int Total;
  31. int Dropped;
  32. stream* File;
  33. } dumpoutput;
  34. static int Process(dumpoutput* p, const packet* Packet, const flowstate* State)
  35. {
  36. if (Packet)
  37. {
  38. if (State->CurrTime >= 0 && Packet->RefTime > State->CurrTime + SHOWAHEAD)
  39. return ERR_BUFFER_FULL;
  40. if (State->CurrTime != TIME_RESEND)
  41. {
  42. if (p->Format.Type == PACKET_AUDIO)
  43. p->Total += Packet->Length;
  44. else
  45. ++p->Total;
  46. if (p->File)
  47. {
  48. int y,h,w,pitch;
  49. const uint8_t* ptr = Packet->Data[0];
  50. h = p->Format.Format.Video.Height;
  51. w = p->Format.Format.Video.Width;
  52. pitch = p->Format.Format.Video.Pitch;
  53. DebugMessage(T("y %08x %d %d"),StreamSeek(p->File,0,SEEK_CUR),w,h);
  54. for (y=0;y<h;++y,ptr+=pitch)
  55. StreamWrite(p->File,ptr,w);
  56. ptr = Packet->Data[1];
  57. h >>= 1;
  58. w >>= 1;
  59. pitch >>= 1;
  60. DebugMessage(T("u %08x %d %d"),StreamSeek(p->File,0,SEEK_CUR),w,h);
  61. for (y=0;y<h;++y,ptr+=pitch)
  62. StreamWrite(p->File,ptr,w);
  63. DebugMessage(T("v %08x %d %d"),StreamSeek(p->File,0,SEEK_CUR),w,h);
  64. ptr = Packet->Data[2];
  65. for (y=0;y<h;++y,ptr+=pitch)
  66. StreamWrite(p->File,ptr,w);
  67. }
  68. }
  69. }
  70. else
  71. if (State->DropLevel)
  72. ++p->Dropped;
  73. return ERR_NONE;
  74. }
  75. static int UpdateInput(dumpoutput* p)
  76. {
  77. p->Total = 0;
  78. p->Dropped = 0;
  79. if ((p->Format.Type == PACKET_SUBTITLE) ||
  80. (p->Format.Type == PACKET_VIDEO && (p->Node.Class != DUMPVIDEO_ID || Compressed(&p->Format.Format.Video.Pixel))) ||
  81.     (p->Format.Type == PACKET_AUDIO && (p->Node.Class != DUMPAUDIO_ID || p->Format.Format.Audio.Format != AUDIOFMT_PCM)))
  82. {
  83. PacketFormatClear(&p->Format);
  84. return ERR_INVALID_DATA;
  85. }
  86. if (!p->File)
  87. {
  88. tchar_t URL[MAXPATH];
  89. node* Input = NULL;
  90. node* Player = Context()->Player;
  91. Player->Get(Player,PLAYER_INPUT,&Input,sizeof(Input));
  92. if (Input && Input->Get(Input,STREAM_URL,URL,sizeof(URL))==ERR_NONE)
  93. {
  94. SetFileExt(URL,TSIZEOF(URL),T("yuv"));
  95. p->File = StreamOpen(URL,1);
  96. }
  97. }
  98. return ERR_NONE;
  99. }
  100. static int Get(dumpoutput* p, int No, void* Data, int Size)
  101. {
  102. int Result = ERR_INVALID_PARAM;
  103. switch (No)
  104. {
  105. case OUT_INPUT: GETVALUE(p->Pin,pin); break;
  106. case OUT_OUTPUT|PIN_FORMAT:
  107. case OUT_INPUT|PIN_FORMAT: GETVALUE(p->Format,packetformat); break;
  108. case OUT_INPUT|PIN_PROCESS: GETVALUE((packetprocess)Process,packetprocess); break;
  109. case OUT_TOTAL: GETVALUE(p->Total,int); break;
  110. case OUT_DROPPED: GETVALUE(p->Dropped,int); break;
  111. case VOUT_CAPS: GETVALUE(0,int); break;
  112. }
  113. return Result;
  114. }
  115. static int Set(dumpoutput* p, int No, const void* Data, int Size)
  116. {
  117. int Result = ERR_INVALID_PARAM;
  118. switch (No)
  119. {
  120. case OUT_INPUT: SETVALUE(p->Pin,pin,ERR_NONE); break;
  121. case OUT_INPUT|PIN_FORMAT: SETPACKETFORMAT(p->Format,packetformat,UpdateInput(p)); break;
  122. case OUT_TOTAL: SETVALUE(p->Total,int,ERR_NONE); break;
  123. case OUT_DROPPED: SETVALUE(p->Dropped,int,ERR_NONE); break;
  124. }
  125. return Result;
  126. }
  127. static void Delete(dumpoutput* p)
  128. {
  129. if (p->File)
  130. {
  131. StreamClose(p->File);
  132. p->File = NULL;
  133. }
  134. }
  135. static int Create(dumpoutput* p)
  136. {
  137. p->Node.Get = (nodeget)Get;
  138. p->Node.Set = (nodeset)Set;
  139. return ERR_NONE;
  140. }
  141. static const nodedef DumpAudio =
  142. {
  143. sizeof(dumpoutput),
  144. DUMPAUDIO_ID,
  145. AOUT_CLASS,
  146. PRI_MINIMUM,
  147. (nodecreate)Create,
  148. (nodedelete)Delete,
  149. };
  150. static const nodedef DumpVideo =
  151. {
  152. sizeof(dumpoutput),
  153. DUMPVIDEO_ID,
  154. VOUT_CLASS,
  155. PRI_MINIMUM,
  156. (nodecreate)Create,
  157. (nodedelete)Delete,
  158. };
  159. void DumpOutput_Init()
  160. {
  161. NodeRegisterClass(&DumpVideo);
  162. NodeRegisterClass(&DumpAudio);
  163. }
  164. void DumpOutput_Done()
  165. {
  166. NodeUnRegisterClass(DUMPAUDIO_ID);
  167. NodeUnRegisterClass(DUMPVIDEO_ID);
  168. }