Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-12-03 03:45:46 +0400
committerClément Bœsch <ubitux@gmail.com>2011-12-03 06:24:32 +0400
commit215b7724e7ef332eab5aff8d1ab6b77a11f47c4f (patch)
tree3ffc80ccf075fd5972f6c2312a313c6bceea39bf /libavformat/wav.c
parenteac5987c4f662ab272f6788b5edc233a9525f844 (diff)
lavf: rename remaining av_set_pts_info() to avpriv_set_pts_info().
Diffstat (limited to 'libavformat/wav.c')
-rw-r--r--libavformat/wav.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/wav.c b/libavformat/wav.c
index 053c855fd4..b9a8f4038a 100644
--- a/libavformat/wav.c
+++ b/libavformat/wav.c
@@ -498,7 +498,7 @@ static int wav_read_header(AVFormatContext *s,
wav->smv_data_ofs = avio_tell(pb) + (size - 5) * 3;
avio_rl24(pb);
wav->smv_block_size = avio_rl24(pb);
- av_set_pts_info(vst, 32, 1, avio_rl24(pb));
+ avpriv_set_pts_info(vst, 32, 1, avio_rl24(pb));
vst->duration = avio_rl24(pb);
avio_rl24(pb);
avio_rl24(pb);