diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-10-08 19:23:14 +0000 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-10-15 06:37:55 +0000 |
commit | 2d6e58497e76836604364b037df9b00ba3d75b69 (patch) | |
tree | 4f665ce1bdfe33cc77c380b39f54cc25812b24c9 /libavformat/internal.h | |
parent | 7ea1b3472a61de4aa4d41b571e99418e4997ad41 (diff) | |
download | ffmpeg-2d6e58497e76836604364b037df9b00ba3d75b69.tar.gz |
lavf: switch to AVCodecContext.framerate for demuxing
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index 9921ce11e0..c66a0458ef 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -323,7 +323,7 @@ int ff_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out, /** * Return the frame duration in seconds. Return 0 if not available. */ -void ff_compute_frame_duration(int *pnum, int *pden, AVStream *st, +void ff_compute_frame_duration(AVFormatContext *s, int *pnum, int *pden, AVStream *st, AVCodecParserContext *pc, AVPacket *pkt); unsigned int ff_codec_get_tag(const AVCodecTag *tags, enum AVCodecID id); |