X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavdevice%2Fbktr.c;h=2902425b4d40405ebade63bb94d715b35f30c813;hb=c1828450686ce240f344924b5b5bcaa84ebdcd9f;hp=c8a895326732acef7f07a4cf8a8a42c00969c58b;hpb=b9aa4ccff51598553cfc81b619b8c2bef26c1413;p=ffmpeg diff --git a/libavdevice/bktr.c b/libavdevice/bktr.c index c8a89532673..2902425b4d4 100644 --- a/libavdevice/bktr.c +++ b/libavdevice/bktr.c @@ -286,14 +286,12 @@ static int grab_read_header(AVFormatContext *s1) s->per_frame = ((uint64_t)1000000 * framerate.den) / framerate.num; - st->codec->codec_type = AVMEDIA_TYPE_VIDEO; - st->codec->pix_fmt = AV_PIX_FMT_YUV420P; - st->codec->codec_id = AV_CODEC_ID_RAWVIDEO; - st->codec->width = s->width; - st->codec->height = s->height; - st->codec->time_base.den = framerate.num; - st->codec->time_base.num = framerate.den; - + st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO; + st->codecpar->format = AV_PIX_FMT_YUV420P; + st->codecpar->codec_id = AV_CODEC_ID_RAWVIDEO; + st->codecpar->width = s->width; + st->codecpar->height = s->height; + st->avg_frame_rate = framerate; if (bktr_init(s1->filename, s->width, s->height, s->standard, &s->video_fd, &s->tuner_fd, -1, 0.0) < 0) {