From 215b7724e7ef332eab5aff8d1ab6b77a11f47c4f Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Sat, 3 Dec 2011 00:45:46 +0100 Subject: lavf: rename remaining av_set_pts_info() to avpriv_set_pts_info(). --- libavformat/g723_1.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavformat/g723_1.c') 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; } -- cgit v1.2.3