diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-11-25 11:06:14 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-11-25 11:06:14 +0100 |
commit | e0791c5aaf1c12601322e410119ca46c6d09981d (patch) | |
tree | ca693faa65739115f516b5bad59266316466ff1a /libavformat/flvdec.c | |
parent | 334775f58f0981ad33bdb1cda5cecabdbd01f2ba (diff) | |
download | ffmpeg-e0791c5aaf1c12601322e410119ca46c6d09981d.tar.gz |
lavf/flvdec: Set avg_frame_rate for video streams.
Requested-by: qw, applemax82 at 163 dot com
Reviewed-by: Steven Liu
Diffstat (limited to 'libavformat/flvdec.c')
-rw-r--r-- | libavformat/flvdec.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index 39e214280d..18645b042e 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -67,6 +67,7 @@ typedef struct FLVContext { int64_t *keyframe_times; int64_t *keyframe_filepositions; int missing_streams; + AVRational framerate; } FLVContext; static int probe(AVProbeData *p, int live) @@ -142,8 +143,10 @@ static AVStream *create_stream(AVFormatContext *s, int codec_type) s->ctx_flags &= ~AVFMTCTX_NOHEADER; if (codec_type == AVMEDIA_TYPE_AUDIO) flv->missing_streams &= ~FLV_HEADER_FLAG_HASAUDIO; - if (codec_type == AVMEDIA_TYPE_VIDEO) + if (codec_type == AVMEDIA_TYPE_VIDEO) { flv->missing_streams &= ~FLV_HEADER_FLAG_HASVIDEO; + st->avg_frame_rate = flv->framerate; + } avpriv_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */ @@ -555,6 +558,10 @@ static int amf_parse_object(AVFormatContext *s, AVStream *astream, if (!st) return AVERROR(ENOMEM); st->codecpar->codec_id = AV_CODEC_ID_TEXT; + } else if (!strcmp(key, "framerate")) { + flv->framerate = av_d2q(num_val, 1000); + if (vstream) + vstream->avg_frame_rate = flv->framerate; } else if (flv->trust_metadata) { if (!strcmp(key, "videocodecid") && vpar) { int ret = flv_set_video_codec(s, vstream, num_val, 0); |