summaryrefslogtreecommitdiff
path: root/libavdevice/decklink_dec.cpp
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2020-07-15 20:23:12 +0200
committerMarton Balint <cus@passwd.hu>2020-09-13 17:59:30 +0200
commite33c0d8c69a2760f228237f9c4d091987382ed5a (patch)
treee2bdaf2764c0e0ae640bb7814c862cc41b6578eb /libavdevice/decklink_dec.cpp
parenta9ede0bde4c973296a2e82f11d1458ad3930d4c7 (diff)
downloadffmpeg-e33c0d8c69a2760f228237f9c4d091987382ed5a.tar.gz
avdevice/decklink_dec: use decklink_ctx->raw_format as bmdPixelFormat
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavdevice/decklink_dec.cpp')
-rw-r--r--libavdevice/decklink_dec.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp
index dde68ffddc..af0ef04c56 100644
--- a/libavdevice/decklink_dec.cpp
+++ b/libavdevice/decklink_dec.cpp
@@ -1148,6 +1148,7 @@ av_cold int ff_decklink_read_header(AVFormatContext *avctx)
ctx->video_pts_source = cctx->video_pts_source;
ctx->draw_bars = cctx->draw_bars;
ctx->audio_depth = cctx->audio_depth;
+ ctx->raw_format = (BMDPixelFormat)cctx->raw_format;
cctx->ctx = ctx;
/* Check audio channel option for valid values: 2, 8 or 16 */
@@ -1270,7 +1271,7 @@ av_cold int ff_decklink_read_header(AVFormatContext *avctx)
st->time_base.num = ctx->bmd_tb_num;
st->r_frame_rate = av_make_q(st->time_base.den, st->time_base.num);
- switch((BMDPixelFormat)cctx->raw_format) {
+ switch(ctx->raw_format) {
case bmdFormat8BitYUV:
st->codecpar->codec_id = AV_CODEC_ID_RAWVIDEO;
st->codecpar->codec_tag = MKTAG('U', 'Y', 'V', 'Y');
@@ -1303,7 +1304,9 @@ av_cold int ff_decklink_read_header(AVFormatContext *avctx)
st->codecpar->bits_per_coded_sample = 10;
break;
default:
- av_log(avctx, AV_LOG_ERROR, "Raw Format %.4s not supported\n", (char*) &cctx->raw_format);
+ char fourcc_str[AV_FOURCC_MAX_STRING_SIZE] = {0};
+ av_fourcc_make_string(fourcc_str, ctx->raw_format);
+ av_log(avctx, AV_LOG_ERROR, "Raw Format %s not supported\n", fourcc_str);
ret = AVERROR(EINVAL);
goto error;
}
@@ -1364,7 +1367,7 @@ av_cold int ff_decklink_read_header(AVFormatContext *avctx)
}
result = ctx->dli->EnableVideoInput(ctx->bmd_mode,
- (BMDPixelFormat) cctx->raw_format,
+ ctx->raw_format,
bmdVideoInputFlagDefault);
if (result != S_OK) {