diff options
author | Mark Thompson <sw@jkqxz.net> | 2021-01-21 14:38:58 +0000 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2021-01-21 17:13:54 +0000 |
commit | 773857df592d8f3095a548b3085c6b7fe6b30dfe (patch) | |
tree | 4bd65df775a27081cb477e68f2010b93571a9614 /libavcodec/nvenc.c | |
parent | 64b3aac8d07a8744656737619b70977359d9a6a5 (diff) | |
download | ffmpeg-773857df592d8f3095a548b3085c6b7fe6b30dfe.tar.gz |
hevc: Use common SEI types
Diffstat (limited to 'libavcodec/nvenc.c')
-rw-r--r-- | libavcodec/nvenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c index 0830db714c..a061dee880 100644 --- a/libavcodec/nvenc.c +++ b/libavcodec/nvenc.c @@ -2247,7 +2247,7 @@ static int nvenc_send_frame(AVCodecContext *avctx, const AVFrame *frame) if (tc_data) { sei_data[sei_count].payloadSize = (uint32_t)tc_size; - sei_data[sei_count].payloadType = HEVC_SEI_TYPE_TIME_CODE; + sei_data[sei_count].payloadType = SEI_TYPE_TIME_CODE; sei_data[sei_count].payload = (uint8_t*)tc_data; sei_count ++; } |