]> git.sesse.net Git - ffmpeg/blobdiff - libavdevice/bktr.c
lavf: replace AVStream.codec with AVStream.codecpar
[ffmpeg] / libavdevice / bktr.c
index 8042c3801109063197db325277e89f1b23c17541..f76a1636c6d25b6cf7666a970edb581bf5f59965 100644 (file)
@@ -295,13 +295,12 @@ static int grab_read_header(AVFormatContext *s1)
     s->height = height;
     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 = width;
-    st->codec->height = 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 = width;
+    st->codecpar->height = height;
+    st->avg_frame_rate = framerate;
 
 
     if (bktr_init(s1->filename, width, height, s->standard,