diff options
author | Clément Bœsch | 2011-12-03 00:45:46 +0100 |
---|---|---|
committer | Clément Bœsch | 2011-12-03 03:24:32 +0100 |
commit | 215b7724e7ef332eab5aff8d1ab6b77a11f47c4f (patch) | |
tree | 3ffc80ccf075fd5972f6c2312a313c6bceea39bf /libavformat/act.c | |
parent | eac5987c4f662ab272f6788b5edc233a9525f844 (diff) |
lavf: rename remaining av_set_pts_info() to avpriv_set_pts_info().
Diffstat (limited to 'libavformat/act.c')
-rw-r--r-- | libavformat/act.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/act.c b/libavformat/act.c index 0c41ba0340..5c414f04e9 100644 --- a/libavformat/act.c +++ b/libavformat/act.c @@ -20,6 +20,7 @@ */ #include "avformat.h" #include "riff.h" +#include "internal.h" #include "libavcodec/get_bits.h" #define CHUNK_SIZE 512 @@ -88,7 +89,7 @@ static int read_header(AVFormatContext *s, st->codec->frame_size=80; st->codec->channels=1; - av_set_pts_info(st, 64, 1, 100); + avpriv_set_pts_info(st, 64, 1, 100); st->codec->codec_id=CODEC_ID_G729; |