Windows error 0xC00D6D72, -1072861838

Detailed Error Information

MF_E_TRANSFORM_NEED_MORE_INPUT[1]

MessageThe transform cannot produce output until it gets more input samples.%0
Declared inMferror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)true
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode13 (0x00d)
NameFACILITY_MEDIASERVER[2][3]
DescriptionThe source of the error code is the Windows Media Server.[2][3]
Error Code28018 (0x6d72)

Questions

4votes
1answer

GetOutputStatus says output is ready, ProcessOutput says NEED_MORE_INPUT

I am getting stuck in this situation where I get conflicting information: hr = pDecoder->lpVtbl->ProcessInput(pDecoder, dwInputStreamID, pSample, dwFlags); if (FAILED(hr) ... ) //ProcessInput went well, no warnings from here. hr = pDecoder->lpVtbl->GetOutputStatus(pDecoder, &dwFlags); if (SUCCEEDED(hr)) { if (dwFlags == MFT_OUTPUT_STATUS_SAMPLE_READY) { // I get to here, sample is ready, yay! [...] read more
c
winapi
ms-media-foundation
2votes
0answers

Different behavior of H.264 encoder MFT on Win7 and Win8

Several months have passed since I finished my program which uses H.264 and AAC encoder MFT to convert video files into MP4. While it works well on Win7, when I ran it on Win8 (also tried on Win10 Build 10240) yesterday, I found something different form what I saw on [...] read more
ms-media-foundation
mft
1vote
1answer

MF doesn't play video from my source

I’m developing a media foundation-based h264 player to play h264 video and HE-AAC audio from my own custom media source. My prototype doesn't play video, only audio. How to fix that? Here's the problem. I open my URL. The framework creates and initializes my media source, which in turn creates [...] read more
c++
windows
video
h.264
ms-media-foundation
0votes
1answer

Video Recording Hangs on IMFSinkWriter->Finalize

I’ve implemented custom IMFMediaSink for use with sink writer. Works OK, receives h264 video samples. I don’t have any container, I’m consuming raw h264 video samples. I have not implemented custom writer, I'm using MFCreateSinkWriterFromMediaSink API to wrap my custom media sink into a framework-provided writer. I’m unable to implement [...] read more
c++
windows
windows-10
h.264
ms-media-foundation

Comments

Leave a comment

(plain text only)

Sources

  1. Mferror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0