diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-12-03 00:45:46 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-12-03 03:24:32 +0100 |
commit | 215b7724e7ef332eab5aff8d1ab6b77a11f47c4f (patch) | |
tree | 3ffc80ccf075fd5972f6c2312a313c6bceea39bf /libavformat/g729dec.c | |
parent | eac5987c4f662ab272f6788b5edc233a9525f844 (diff) | |
download | ffmpeg-215b7724e7ef332eab5aff8d1ab6b77a11f47c4f.tar.gz |
lavf: rename remaining av_set_pts_info() to avpriv_set_pts_info().
Diffstat (limited to 'libavformat/g729dec.c')
-rw-r--r-- | libavformat/g729dec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/g729dec.c b/libavformat/g729dec.c index 512c04ec10..82b1198c55 100644 --- a/libavformat/g729dec.c +++ b/libavformat/g729dec.c @@ -20,6 +20,7 @@ */ #include "avformat.h" +#include "internal.h" #include "libavutil/log.h" #include "libavutil/opt.h" @@ -60,7 +61,7 @@ static int g729_read_header(AVFormatContext *s, AVFormatParameters *ap) return AVERROR_INVALIDDATA; } - av_set_pts_info(st, st->codec->block_align << 3, 1, st->codec->sample_rate); + avpriv_set_pts_info(st, st->codec->block_align << 3, 1, st->codec->sample_rate); return 0; } static int g729_read_packet(AVFormatContext *s, AVPacket *pkt) |