Commit d005ccc6 authored by Anton Khirnov's avatar Anton Khirnov

nvenc: rename a misnamed function

This function copies the encoded bistream into the caller's packet,
calling it 'get_frame' is misleading.
parent 118beda3
...@@ -1052,7 +1052,7 @@ static int nvenc_set_timestamp(AVCodecContext *avctx, ...@@ -1052,7 +1052,7 @@ static int nvenc_set_timestamp(AVCodecContext *avctx,
return nvenc_dequeue_timestamp(ctx->timestamps, &pkt->dts); return nvenc_dequeue_timestamp(ctx->timestamps, &pkt->dts);
} }
static int nvenc_get_frame(AVCodecContext *avctx, AVPacket *pkt) static int nvenc_get_output(AVCodecContext *avctx, AVPacket *pkt)
{ {
NVENCContext *ctx = avctx->priv_data; NVENCContext *ctx = avctx->priv_data;
NV_ENCODE_API_FUNCTION_LIST *nv = &ctx->nvel.nvenc_funcs; NV_ENCODE_API_FUNCTION_LIST *nv = &ctx->nvel.nvenc_funcs;
...@@ -1196,7 +1196,7 @@ int ff_nvenc_encode_frame(AVCodecContext *avctx, AVPacket *pkt, ...@@ -1196,7 +1196,7 @@ int ff_nvenc_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
} }
if (output_ready(avctx, !frame)) { if (output_ready(avctx, !frame)) {
ret = nvenc_get_frame(avctx, pkt); ret = nvenc_get_output(avctx, pkt);
if (ret < 0) if (ret < 0)
return ret; return ret;
*got_packet = 1; *got_packet = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment