Skip to content

Commit

Permalink
[omximage] Increase timeout on encode
Browse files Browse the repository at this point in the history
  • Loading branch information
popcornmix committed Apr 15, 2015
1 parent d8e8eb1 commit 095851d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/cores/omxplayer/OMXImage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1414,7 +1414,7 @@ bool COMXImageEnc::Encode(unsigned char *buffer, int size, unsigned width, unsig
m_omx_encoder.DecoderFillBufferDone(m_omx_encoder.GetComponent(), m_encoded_buffer);
return false;
}
omx_err = m_omx_encoder.WaitForOutputDone(1000);
omx_err = m_omx_encoder.WaitForOutputDone(2000);
if(omx_err != OMX_ErrorNone)
{
CLog::Log(LOGERROR, "%s::%s m_omx_encoder.WaitForOutputDone result(0x%x)\n", CLASSNAME, __func__, omx_err);
Expand Down

0 comments on commit 095851d

Please sign in to comment.