[FFmpeg-cvslog] pmpdec: don't use deprecated av_set_pts_info.
Anton Khirnov
git at videolan.org
Fri Dec 2 01:00:54 CET 2011
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Thu Dec 1 17:28:36 2011 +0100| [74e96eb77e7ce6da6917d8fb5ae1151b90eb5e4b] | committer: Anton Khirnov
pmpdec: don't use deprecated av_set_pts_info.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=74e96eb77e7ce6da6917d8fb5ae1151b90eb5e4b
---
libavformat/pmpdec.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/libavformat/pmpdec.c b/libavformat/pmpdec.c
index a367344..96c7048 100644
--- a/libavformat/pmpdec.c
+++ b/libavformat/pmpdec.c
@@ -21,6 +21,7 @@
#include "libavutil/intreadwrite.h"
#include "avformat.h"
+#include "internal.h"
typedef struct PMPContext {
int cur_stream;
@@ -70,7 +71,7 @@ static int pmp_header(AVFormatContext *s, AVFormatParameters *ap)
tb_num = avio_rl32(pb);
tb_den = avio_rl32(pb);
- av_set_pts_info(vst, 32, tb_num, tb_den);
+ avpriv_set_pts_info(vst, 32, tb_num, tb_den);
vst->nb_frames = index_cnt;
vst->duration = index_cnt;
@@ -98,7 +99,7 @@ static int pmp_header(AVFormatContext *s, AVFormatParameters *ap)
ast->codec->codec_id = audio_codec_id;
ast->codec->channels = channels;
ast->codec->sample_rate = srate;
- av_set_pts_info(ast, 32, 1, srate);
+ avpriv_set_pts_info(ast, 32, 1, srate);
}
pos = avio_tell(pb) + 4 * index_cnt;
for (i = 0; i < index_cnt; i++) {
More information about the ffmpeg-cvslog
mailing list