X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fvc1testenc.c;h=60fb894a97736a21aa8705d220be372e9eb9501e;hb=0efafc5849037046c3834769d6e20d33fae0c769;hp=751333a4b83b0194848fd9e214365bb9b221b8a2;hpb=04747c5a73af4a83574dde878688d2f8406034b4;p=ffmpeg diff --git a/libavformat/vc1testenc.c b/libavformat/vc1testenc.c index 751333a4b83..60fb894a977 100644 --- a/libavformat/vc1testenc.c +++ b/libavformat/vc1testenc.c @@ -27,19 +27,19 @@ typedef struct RCVContext { static int vc1test_write_header(AVFormatContext *s) { - AVCodecContext *avc = s->streams[0]->codec; + AVCodecParameters *par = s->streams[0]->codecpar; AVIOContext *pb = s->pb; - if (avc->codec_id != AV_CODEC_ID_WMV3) { + if (par->codec_id != AV_CODEC_ID_WMV3) { av_log(s, AV_LOG_ERROR, "Only WMV3 is accepted!\n"); return -1; } avio_wl24(pb, 0); //frames count will be here avio_w8(pb, 0xC5); avio_wl32(pb, 4); - avio_write(pb, avc->extradata, 4); - avio_wl32(pb, avc->height); - avio_wl32(pb, avc->width); + avio_write(pb, par->extradata, 4); + avio_wl32(pb, par->height); + avio_wl32(pb, par->width); avio_wl32(pb, 0xC); avio_wl24(pb, 0); // hrd_buffer avio_w8(pb, 0x80); // level|cbr|res1