summaryrefslogtreecommitdiff
path: root/libavformat/lmlm4.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/lmlm4.c')
-rw-r--r--libavformat/lmlm4.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/lmlm4.c b/libavformat/lmlm4.c
index 96007aa472..865cb2da90 100644
--- a/libavformat/lmlm4.c
+++ b/libavformat/lmlm4.c
@@ -24,6 +24,7 @@
#include "libavutil/intreadwrite.h"
#include "avformat.h"
+#include "internal.h"
#define LMLM4_I_FRAME 0x00
#define LMLM4_P_FRAME 0x01
@@ -65,7 +66,7 @@ static int lmlm4_read_header(AVFormatContext *s, AVFormatParameters *ap) {
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
st->codec->codec_id = CODEC_ID_MPEG4;
st->need_parsing = AVSTREAM_PARSE_HEADERS;
- av_set_pts_info(st, 64, 1001, 30000);
+ avpriv_set_pts_info(st, 64, 1001, 30000);
if (!(st = avformat_new_stream(s, NULL)))
return AVERROR(ENOMEM);