mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
omxvideodec: OMX_ErrorNoMore is no error and just means we ended iteration
This commit is contained in:
parent
f90a6ed9e9
commit
4ef40839a2
1 changed files with 1 additions and 1 deletions
|
@ -895,7 +895,7 @@ gst_omx_video_dec_negotiate (GstOMXVideoDec * self)
|
|||
if (old_index == param.nIndex)
|
||||
break;
|
||||
|
||||
if (err == OMX_ErrorNone) {
|
||||
if (err == OMX_ErrorNone || err == OMX_ErrorNoMore) {
|
||||
switch (param.eColorFormat) {
|
||||
case OMX_COLOR_FormatYUV420Planar:
|
||||
case OMX_COLOR_FormatYUV420PackedPlanar:
|
||||
|
|
Loading…
Reference in a new issue