ffmpeg_cuvid: add 420 10-bit transcode support for hwaccel cuvid

Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
This commit is contained in:
sumit 2017-01-31 21:00:50 +05:30 committed by Timo Rothenpieler
parent 26d5caf679
commit 479241da37
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ int cuvid_transcode_init(OutputStream *ost)
*/
hwframe_ctx = (AVHWFramesContext*)ctx->hw_frames_ctx->data;
hwframe_ctx->format = AV_PIX_FMT_CUDA;
hwframe_ctx->sw_format = AV_PIX_FMT_NV12;
hwframe_ctx->sw_format = ist->st->codecpar->format == AV_PIX_FMT_YUV420P10 ? AV_PIX_FMT_P010 : AV_PIX_FMT_NV12;
}
return 0;