mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avdevice/decklink_dec: fix bitrate calculations
Reviewed-by: Deti Fliegl <deti@fliegl.de> Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
e9394ca63d
commit
340cea9f22
@ -563,15 +563,16 @@ av_cold int ff_decklink_read_header(AVFormatContext *avctx)
|
||||
|
||||
st->time_base.den = ctx->bmd_tb_den;
|
||||
st->time_base.num = ctx->bmd_tb_num;
|
||||
st->codecpar->bit_rate = av_image_get_buffer_size((AVPixelFormat)st->codecpar->format, ctx->bmd_width, ctx->bmd_height, 1) * 1/av_q2d(st->time_base) * 8;
|
||||
|
||||
if (cctx->v210) {
|
||||
st->codecpar->codec_id = AV_CODEC_ID_V210;
|
||||
st->codecpar->codec_tag = MKTAG('V', '2', '1', '0');
|
||||
st->codecpar->bit_rate = av_rescale(ctx->bmd_width * ctx->bmd_height * 64, st->time_base.den, st->time_base.num * 3);
|
||||
} else {
|
||||
st->codecpar->codec_id = AV_CODEC_ID_RAWVIDEO;
|
||||
st->codecpar->format = AV_PIX_FMT_UYVY422;
|
||||
st->codecpar->codec_tag = MKTAG('U', 'Y', 'V', 'Y');
|
||||
st->codecpar->bit_rate = av_rescale(ctx->bmd_width * ctx->bmd_height * 16, st->time_base.den, st->time_base.num);
|
||||
}
|
||||
|
||||
avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
|
||||
|
Loading…
Reference in New Issue
Block a user