- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
媒体基础转换对象 (MFT) 可以实现输出缓冲区分配模型,其中缓冲区由 MFT 对象在内部分配。
如果是这种情况,内部分配的缓冲区将通过传递给 IMFTransform::ProcessOutput( )
方法。
来自MFT_OUTPUT_DATA_BUFFER structure文档:
typedef struct _MFT_OUTPUT_DATA_BUFFER {
DWORD dwStreamID;
IMFSample *pSample;
DWORD dwStatus;
IMFCollection *pEvents;
} MFT_OUTPUT_DATA_BUFFER;
pSample
Pointer to the
IMFSample
interface. Before callingProcessOutput
, set this member equal to a validIMFSample
pointer orNULL
. See Remarks for more information.
来自IMFTransform::ProcessOutput文档:
输出缓冲区
The MFT returns output data for a stream through the
pSample
member of theMFT_OUTPUT_DATA_BUFFER
structure. This structure member is a pointer to theIMFSample
interface of a media sample. (See Media Samples.) The media sample is allocated either by the caller or by the MFT, depending on the MFT's allocation model. To find the allocation model, callIMFTransform::GetOutputStreamInfo
and examine thedwFlags
member of theMFT_OUTPUT_STREAM_INFO
structure
...
If
pSample
isNULL
anddwFlags
does not contain theMFT_PROCESS_OUTPUT_DISCARD_WHEN_NO_BUFFER
, the MFT provides a sample for the output data. The MFT setspSample
to point to the sample that it provides. The MFT can either allocate a new sample or re-use an input sample.
文档没有提到在这种情况下返回的 IMFSample
接口(interface)是否应该被释放。 似乎不是这样,因为文档非常明确任何通过同一结构返回的事件应由调用者释放。
来自MFT_OUTPUT_DATA_BUFFER structure文档:
pEvents
Before calling
ProcessOutput
, set this member toNULL
. On output, the MFT might set this member to a validIMFCollection
interface pointer. The pointer represents a collecton that contains zero or more events. To get each event, callIMFCollection::GetElement
and query the returnedIUnknown
pointer for theIMFMediaEvent
interface. When theProcessOutput
method returns, the caller is responsible for releasing theIMFCollection
pointer if the pointer is notNULL
.
有人可以确认返回的 IMFSample
接口(interface)是否应该发布吗?
我认为如果我们不应该释放返回的接口(interface),它应该被明确地记录下来,因为它违背了在我们使用完接口(interface)后释放接口(interface)的既定 COM 方式。
最佳答案
如果 MFT 使用非 NULL 值初始化指针(与调用者分配的缓冲区相反——在这种情况下,MFT 使用它但不需要 AddRef结构)。
下面的代码片段适用于所有三种模型:
- If the MFT_OUTPUT_STREAM_PROVIDES_SAMPLES flag is present, the MFT allocates the media sample.
- If the MFT_OUTPUT_STREAM_CAN_PROVIDE_SAMPLES flag is present, the caller can optionally provide a media sample. If pSample is NULL, the MFT will allocate the media sample.
- If neither of these two flags is present, the caller must allocate the media sample.
请注意,文档中没有提到调用方提供示例指针,而 MFT 将其替换为自己的指针的场景。
(虽然代码并不完美,只是引用计数的说明;如果有先验信息表明样本是调用者的,则无需执行附加/分离操作,当然)
CComPtr<IMFSample> pSample;
// pSample is NULL or not
MFT_OUTPUT_DATA_BUFFER Buffer;
Buffer.pSample = pSample.Detach();
// ...
const HRESULT nResult = pTransform->ProcessOutput(..., &Buffer, ...);
pSample.Attach(Buffer.pSample);
// pSample holds a valid properly ref'fed pointer
// No need to use Buffer.pSample below
关于c++ - 我应该释放内部分配的 MFT 输出缓冲区的返回 IMFSample 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39354358/
这是我的测试用例。 http://tobeythorn.com/isi/dummy2.svg http://tobeythorn.com/isi/isitest.html 如果我自己打开 svg,内部
这是我的测试用例。 http://tobeythorn.com/isi/dummy2.svg http://tobeythorn.com/isi/isitest.html 如果我自己打开 svg,内部
我正在尝试做类似的事情: SELECT SUM( CASE WHEN ( AND EXISTS(SELECT 1
我想问如何在外部 ng-repeat 内部正确使用内部 ng-repeat: 这意味着你想使用这样的东西: {{milestone.id}} {{
我希望在 wordpress 的仪表板内编辑 css 样式并且如果可能的话不必编辑 php 文件。 我知道至少可以编辑一些属性,所以我希望我可以直接在仪表板中编辑所有属性。 更具体地说如何更改自定义类
我在安装在 windows10 上的 vmware 中的 Ubuntu 上安装了伪分布式独立 hadoop 版本。 我从网上下载了一个文件,复制到ubuntu本地目录/lab/data 我在 ubun
我有一个如下所示的 WHERE 语句: WHERE ((@Value1 IS NULL AND [value1_id] IS NULL) OR [value1_id] = ISNULL(@Va
我有一个如下所示的 WHERE 语句: WHERE ((@Value1 IS NULL AND [value1_id] IS NULL) OR [value1_id] = ISNULL(@Va
在我的一些测试帮助程序代码中,我有一个名为 FakeDbSet(Of T) 的 IDbSet(Of T) 实现,它模拟了许多 EF 行为,但没有实际的数据库。我将类声明为 Friend ,因为我想强制
我正在寻找 Cassandra/CQL 的常见 SQL 习语 INSERT INTO ... SELECT ... FROM ... 的表亲。并且一直无法找到任何以编程方式或在 CQL 中执行此类操作
如何防止内部 while 循环无限运行?问题是,如果没有外部 while 循环,内部循环将毫无问题地运行。我知道它必须对外循环执行某些操作,但我无法弄清楚是什么导致了问题。 import java.u
我正在努力学习更多有关 C++ 的知识,但在国际象棋程序中遇到了一些代码,需要帮助才能理解。我有一个 union ,例如: union b_union { Bitboard b; st
这是我项目网页中的代码片段。这里我想显示用户选择的类别,然后想显示属于该类别的主题。在那里,用户可以拥有多个类别,这没有问题。我可以在第一个 while 循环中打印所有这些类别。问题是当我尝试打印主题
我想知道如何在 swing 中显示内部框架。这意味着,当需要 JFrame 时,通常我所做的是, new MyJFrame().setVisible(true); 假设之前的表单也应该显示。当显示这个
我最近发现了一些有趣的行为,这让我想知道对象如何知道存在哪些全局变量。例如,假设我有一个文件“test.py”: globalVar = 1 toDelete = 2 class Test(objec
我知道它已经在这里得到回答: google maps drag and drop objects into google maps from outside the Map ,但这并不完全是我所需要的
我目前正在学习Javascript DOM和innerHTML,发现在理解innerHTML方面存在一些问题。 这是我的代码:http://jsfiddle.net/hphchan/bfjx1w70/
我构建了一个布局如下的库: lib/ private_class_impl.cc private_class_decl.h public_class_impl.cc include/
我有一个使用 bootstrap 3 的组合 wordpress 网站。它基本上是一个图像网格。当屏幕展开时,它会从三列变为四列。移动时它是一列。 我想出了如何调整图像的顶部和底部边距,但我希望图像的
我正在试用 MSP-EXP430G2 的教程程序,使用 Code Composer Studio 使 LED 闪烁。最初,它有一个闪烁的无限循环: for(;;) // This emp
我是一名优秀的程序员,十分优秀!