X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fswfdec.c;h=3a60fab702f2e2b605a4056809e78cdfdf3bd5e8;hb=5af41508310b856b1e5ca605e50e956bf81eeef9;hp=1f010c58be38f574bca3da71e40918b3f9a3d207;hpb=7e04cfba27a6d7ab6d142242fb76d1d243707a66;p=ffmpeg diff --git a/libavformat/swfdec.c b/libavformat/swfdec.c index 1f010c58be3..3a60fab702f 100644 --- a/libavformat/swfdec.c +++ b/libavformat/swfdec.c @@ -110,8 +110,8 @@ static int swf_read_packet(AVFormatContext *s, AVPacket *pkt) if (!vst) return -1; vst->codec->codec_type = CODEC_TYPE_VIDEO; - vst->codec->codec_id = codec_get_id(swf_codec_tags, get_byte(pb)); - av_set_pts_info(vst, 64, 256, swf->frame_rate); + vst->codec->codec_id = ff_codec_get_id(swf_codec_tags, get_byte(pb)); + av_set_pts_info(vst, 16, 256, swf->frame_rate); vst->codec->time_base = (AVRational){ 256, swf->frame_rate }; len -= 8; } else if (tag == TAG_STREAMHEAD || tag == TAG_STREAMHEAD2) { @@ -130,10 +130,9 @@ static int swf_read_packet(AVFormatContext *s, AVPacket *pkt) ast = av_new_stream(s, -1); /* -1 to avoid clash with video stream ch_id */ if (!ast) return -1; - swf->audio_stream_index = ast->index; ast->codec->channels = 1 + (v&1); ast->codec->codec_type = CODEC_TYPE_AUDIO; - ast->codec->codec_id = codec_get_id(swf_audio_codec_tags, (v>>4) & 15); + ast->codec->codec_id = ff_codec_get_id(swf_audio_codec_tags, (v>>4) & 15); ast->need_parsing = AVSTREAM_PARSE_FULL; sample_rate_code= (v>>2) & 3; if (!sample_rate_code)