[FFmpeg-devel] [PATCH v2 3/3] decklink: Fix unused variable compiler warnings
Devin Heitmueller
devin.heitmueller at ltnglobal.com
Fri Mar 3 23:08:15 EET 2023
Due to refactoring, the ctx/cctx variables are never actually used
in ff_decklink_write_packet(), so just remove them.
Signed-off-by: Devin Heitmueller <dheitmueller at ltnglobal.com>
---
libavdevice/decklink_enc.cpp | 2 --
1 file changed, 2 deletions(-)
diff --git a/libavdevice/decklink_enc.cpp b/libavdevice/decklink_enc.cpp
index 573b9e687c..8d423f6b6e 100644
--- a/libavdevice/decklink_enc.cpp
+++ b/libavdevice/decklink_enc.cpp
@@ -627,8 +627,6 @@ error:
int ff_decklink_write_packet(AVFormatContext *avctx, AVPacket *pkt)
{
- struct decklink_cctx *cctx = (struct decklink_cctx *)avctx->priv_data;
- struct decklink_ctx *ctx = (struct decklink_ctx *)cctx->ctx;
AVStream *st = avctx->streams[pkt->stream_index];
if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)
--
2.35.1.655.ga68dfadae5
More information about the ffmpeg-devel
mailing list