mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-05 17:16:50 +08:00
fix[h264d]: fix no output for mvc stream
By default, the frame of view 0 is decoded and output. Change-Id: I26287147548620f733712d4ab044df7c830dbd7f Signed-off-by: Yandong Lin <yandong.lin@rock-chips.com>
This commit is contained in:
@@ -234,7 +234,8 @@ static MPP_RET parser_one_nalu(H264_SLICE_t *currSlice)
|
||||
return MPP_OK;
|
||||
}
|
||||
//!< check whether supprot mvc
|
||||
if (currSlice->mvcExt.valid && !currSlice->p_Dec->cfg->base.enable_mvc) {
|
||||
if (currSlice->mvcExt.view_id && currSlice->mvcExt.valid &&
|
||||
!currSlice->p_Dec->cfg->base.enable_mvc) {
|
||||
currSlice->p_Dec->nalu_ret = MvcDisAble;
|
||||
return MPP_OK;
|
||||
}
|
||||
|
Reference in New Issue
Block a user