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/g723_1.c
parenteac5987c4f662ab272f6788b5edc233a9525f844 (diff)
lavf: rename remaining av_set_pts_info() to avpriv_set_pts_info().
Diffstat (limited to 'libavformat/g723_1.c')
-rw-r--r--libavformat/g723_1.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/g723_1.c b/libavformat/g723_1.c
index 09fd6141fc..86ef540edf 100644
--- a/libavformat/g723_1.c
+++ b/libavformat/g723_1.c
@@ -25,6 +25,7 @@
*/
#include "avformat.h"
+#include "internal.h"
static const uint8_t frame_size[4] = {24, 20, 4, 1};
@@ -41,7 +42,7 @@ static int g723_1_init(AVFormatContext *s, AVFormatParameters *ap)
st->codec->channels = 1;
st->codec->sample_rate = 8000;
- av_set_pts_info(st, 64, 1, st->codec->sample_rate);
+ avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
return 0;
}