Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libavcodec/rkmppdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,13 +200,13 @@ static int rkmpp_init_decoder(AVCodecContext *avctx)
goto fail;
}

paramS32 = 1;
/* paramS32 = 1;
ret = decoder->mpi->control(decoder->ctx, MPP_DEC_SET_PARSER_SPLIT_MODE, &paramS32);
if (ret != MPP_OK) {
av_log(avctx, AV_LOG_ERROR, "Failed to set parser split mode on MPI (code = %d).\n", ret);
ret = AVERROR_UNKNOWN;
goto fail;
}
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't notice that this would affect pts order, where dud you see that ?

}*/

// initialize mpp
ret = mpp_init(decoder->ctx, MPP_CTX_DEC, codectype);
Expand Down