Browse Source

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

Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
tags/n3.3
sumit Timo Rothenpieler 9 years ago
parent
commit
479241da37
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ffmpeg_cuvid.c

+ 1
- 1
ffmpeg_cuvid.c 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;


Loading…
Cancel
Save