summaryrefslogtreecommitdiff
path: root/libavformat/mgsts.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/mgsts.c')
-rw-r--r--libavformat/mgsts.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/mgsts.c b/libavformat/mgsts.c
index 8cbc9521d6..0720de8d86 100644
--- a/libavformat/mgsts.c
+++ b/libavformat/mgsts.c
@@ -55,13 +55,13 @@ static int read_header(AVFormatContext *s)
st->nb_frames =
st->duration = avio_rb32(pb);
fps = av_d2q(av_int2float(avio_rb32(pb)), INT_MAX);
- st->codec->width = avio_rb32(pb);
- st->codec->height = avio_rb32(pb);
+ st->codecpar->width = avio_rb32(pb);
+ st->codecpar->height = avio_rb32(pb);
avio_skip(pb, 12);
- st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
- st->codec->codec_tag = avio_rb32(pb);
- st->codec->codec_id = ff_codec_get_id(ff_codec_bmp_tags,
- st->codec->codec_tag);
+ st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
+ st->codecpar->codec_tag = avio_rb32(pb);
+ st->codecpar->codec_id = ff_codec_get_id(ff_codec_bmp_tags,
+ st->codecpar->codec_tag);
avpriv_set_pts_info(st, 64, fps.den, fps.num);
avio_skip(pb, 20);