1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-23 21:54:53 +02:00

lavf: rename remaining av_set_pts_info() to avpriv_set_pts_info().

This commit is contained in:
Clément Bœsch
2011-12-03 00:45:46 +01:00
parent eac5987c4f
commit 215b7724e7
18 changed files with 34 additions and 22 deletions

View File

@@ -39,6 +39,7 @@
#include <alsa/asoundlib.h>
#include "libavformat/internal.h"
#include "avdevice.h"
#include "alsa-audio.h"
@@ -61,7 +62,7 @@ static av_cold int audio_write_header(AVFormatContext *s1)
st->codec->sample_rate, sample_rate);
goto fail;
}
av_set_pts_info(st, 64, 1, sample_rate);
avpriv_set_pts_info(st, 64, 1, sample_rate);
return res;