summaryrefslogtreecommitdiff
path: root/libavformat/tedcaptionsdec.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2021-05-01 23:13:41 -0300
committerJames Almer <jamrial@gmail.com>2021-05-07 09:27:20 -0300
commitfab2ed47042d4cc2a4cd69bb97738024c01300c7 (patch)
tree4606f91b941a708db2b79e064f3a9601ff5615e0 /libavformat/tedcaptionsdec.c
parent1262f67cca1ed045521dc3af0d9d0ee9716335f2 (diff)
avformat: move AVStream.probe_packets to AVStreamInternal
It's a private fields, no reason to have it exposed in a public header. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/tedcaptionsdec.c')
-rw-r--r--libavformat/tedcaptionsdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/tedcaptionsdec.c b/libavformat/tedcaptionsdec.c
index 94e8432c53..6e87ef66e9 100644
--- a/libavformat/tedcaptionsdec.c
+++ b/libavformat/tedcaptionsdec.c
@@ -299,7 +299,7 @@ static av_cold int tedcaptions_read_header(AVFormatContext *avf)
st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
st->codecpar->codec_id = AV_CODEC_ID_TEXT;
avpriv_set_pts_info(st, 64, 1, 1000);
- st->probe_packets = 0;
+ st->internal->probe_packets = 0;
st->start_time = 0;
st->duration = last->pts + last->duration;
st->cur_dts = 0;