mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
lavf: make av_set_pts_info private.
It's supposed to be called only from (de)muxers.
This commit is contained in:
@ -25,6 +25,7 @@
|
||||
#include "libavutil/dict.h"
|
||||
#include "libavutil/avstring.h"
|
||||
#include "avformat.h"
|
||||
#include "internal.h"
|
||||
#include "avi.h"
|
||||
#include "dv.h"
|
||||
#include "riff.h"
|
||||
@ -502,7 +503,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
||||
ast->scale = 1;
|
||||
}
|
||||
}
|
||||
av_set_pts_info(st, 64, ast->scale, ast->rate);
|
||||
avpriv_set_pts_info(st, 64, ast->scale, ast->rate);
|
||||
|
||||
ast->cum_len=avio_rl32(pb); /* start */
|
||||
st->nb_frames = avio_rl32(pb);
|
||||
@ -784,7 +785,7 @@ static int read_gab2_sub(AVStream *st, AVPacket *pkt) {
|
||||
*st->codec = *ast->sub_ctx->streams[0]->codec;
|
||||
ast->sub_ctx->streams[0]->codec->extradata = NULL;
|
||||
time_base = ast->sub_ctx->streams[0]->time_base;
|
||||
av_set_pts_info(st, 64, time_base.num, time_base.den);
|
||||
avpriv_set_pts_info(st, 64, time_base.num, time_base.den);
|
||||
}
|
||||
ast->sub_buffer = pkt->data;
|
||||
memset(pkt, 0, sizeof(*pkt));
|
||||
|
Reference in New Issue
Block a user