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/loasdec.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/loasdec.c')
-rw-r--r-- | libavformat/loasdec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/loasdec.c b/libavformat/loasdec.c index f3019420d1..e48c21905a 100644 --- a/libavformat/loasdec.c +++ b/libavformat/loasdec.c @@ -22,6 +22,7 @@ #include "libavutil/intreadwrite.h" #include "libavutil/internal.h" #include "avformat.h" +#include "internal.h" #include "rawdec.h" static int loas_probe(AVProbeData *p) @@ -72,7 +73,7 @@ static int loas_read_header(AVFormatContext *s, st->need_parsing = AVSTREAM_PARSE_FULL; //LCM of all possible AAC sample rates - av_set_pts_info(st, 64, 1, 28224000); + avpriv_set_pts_info(st, 64, 1, 28224000); return 0; } |