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

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: nulloutput.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.h"
  24. typedef struct nulloutput
  25. {
  26. node Node;
  27. pin Pin;
  28. packetformat Format;
  29. int Total;
  30. int Dropped;
  31. } nulloutput;
  32. static int Process(nulloutput* p, const packet* Packet, const flowstate* State)
  33. {
  34. if (Packet)
  35. {
  36. if (State->CurrTime >= 0 && Packet->RefTime > State->CurrTime + SHOWAHEAD)
  37. return ERR_BUFFER_FULL;
  38. if (State->CurrTime != TIME_RESEND)
  39. {
  40. if (p->Format.Type == PACKET_AUDIO)
  41. p->Total += Packet->Length;
  42. else
  43. ++p->Total;
  44. }
  45. }
  46. else
  47. if (State->DropLevel)
  48. ++p->Dropped;
  49. return ERR_NONE;
  50. }
  51. static int UpdateInput(nulloutput* p)
  52. {
  53. p->Total = 0;
  54. p->Dropped = 0;
  55. if ((p->Format.Type == PACKET_SUBTITLE) ||
  56. (p->Format.Type == PACKET_VIDEO && (p->Node.Class != NULLVIDEO_ID || Compressed(&p->Format.Format.Video.Pixel))) ||
  57.     (p->Format.Type == PACKET_AUDIO && (p->Node.Class != NULLAUDIO_ID || p->Format.Format.Audio.Format != AUDIOFMT_PCM)))
  58. {
  59. PacketFormatClear(&p->Format);
  60. return ERR_INVALID_DATA;
  61. }
  62. return ERR_NONE;
  63. }
  64. static int Get(nulloutput* p, int No, void* Data, int Size)
  65. {
  66. int Result = ERR_INVALID_PARAM;
  67. switch (No)
  68. {
  69. case OUT_INPUT: GETVALUE(p->Pin,pin); break;
  70. case OUT_OUTPUT|PIN_FORMAT:
  71. case OUT_INPUT|PIN_FORMAT: GETVALUE(p->Format,packetformat); break;
  72. case OUT_INPUT|PIN_PROCESS: GETVALUE((packetprocess)Process,packetprocess); break;
  73. case OUT_TOTAL: GETVALUE(p->Total,int); break;
  74. case OUT_DROPPED: GETVALUE(p->Dropped,int); break;
  75. case VOUT_CAPS: GETVALUE(0,int); break;
  76. }
  77. return Result;
  78. }
  79. static int Set(nulloutput* p, int No, const void* Data, int Size)
  80. {
  81. int Result = ERR_INVALID_PARAM;
  82. switch (No)
  83. {
  84. case OUT_INPUT: SETVALUE(p->Pin,pin,ERR_NONE); break;
  85. case OUT_INPUT|PIN_FORMAT: SETPACKETFORMAT(p->Format,packetformat,UpdateInput(p)); break;
  86. case OUT_TOTAL: SETVALUE(p->Total,int,ERR_NONE); break;
  87. case OUT_DROPPED: SETVALUE(p->Dropped,int,ERR_NONE); break;
  88. }
  89. return Result;
  90. }
  91. static int Create(nulloutput* p)
  92. {
  93. p->Node.Get = (nodeget)Get;
  94. p->Node.Set = (nodeset)Set;
  95. return ERR_NONE;
  96. }
  97. static const nodedef NullAudio =
  98. {
  99. sizeof(nulloutput),
  100. NULLAUDIO_ID,
  101. AOUT_CLASS,
  102. PRI_MINIMUM,
  103. (nodecreate)Create,
  104. NULL,
  105. };
  106. static const nodedef NullVideo =
  107. {
  108. sizeof(nulloutput),
  109. NULLVIDEO_ID,
  110. VOUT_CLASS,
  111. PRI_MINIMUM,
  112. (nodecreate)Create,
  113. NULL,
  114. };
  115. void NullOutput_Init()
  116. {
  117. NodeRegisterClass(&NullVideo);
  118. NodeRegisterClass(&NullAudio);
  119. }
  120. void NullOutput_Done()
  121. {
  122. NodeUnRegisterClass(NULLAUDIO_ID);
  123. NodeUnRegisterClass(NULLVIDEO_ID);
  124. }