X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fsamidec.c;h=7ea1bdfdd97e3166b851c5151bf90d8edd7b3995;hb=6372c9dc9972318e75a5889ad6c52500b8294099;hp=11c674ce19b28ac57afaca4c32750f312d141b56;hpb=26abd5149ebf9602d8036be4c6e72e08c98ea998;p=ffmpeg diff --git a/libavformat/samidec.c b/libavformat/samidec.c index 11c674ce19b..7ea1bdfdd97 100644 --- a/libavformat/samidec.c +++ b/libavformat/samidec.c @@ -59,8 +59,8 @@ static int sami_read_header(AVFormatContext *s) if (!st) return AVERROR(ENOMEM); avpriv_set_pts_info(st, 64, 1, 1000); - st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE; - st->codec->codec_id = AV_CODEC_ID_SAMI; + st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE; + st->codecpar->codec_id = AV_CODEC_ID_SAMI; av_bprint_init(&buf, 0, AV_BPRINT_SIZE_UNLIMITED); av_bprint_init(&hdr_buf, 0, AV_BPRINT_SIZE_UNLIMITED); @@ -101,7 +101,7 @@ static int sami_read_header(AVFormatContext *s) av_bprint_clear(&buf); } - res = avpriv_bprint_to_extradata(st->codec, &hdr_buf); + res = ff_bprint_to_codecpar_extradata(st->codecpar, &hdr_buf); if (res < 0) goto end;