summaryrefslogtreecommitdiff
path: root/libavformat/sbgdec.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/sbgdec.c
parent1262f67cca1ed045521dc3af0d9d0ee9716335f2 (diff)
downloadffmpeg-fab2ed47042d4cc2a4cd69bb97738024c01300c7.tar.gz
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/sbgdec.c')
-rw-r--r--libavformat/sbgdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/sbgdec.c b/libavformat/sbgdec.c
index bc9945dfd4..7b9ada569e 100644
--- a/libavformat/sbgdec.c
+++ b/libavformat/sbgdec.c
@@ -1438,7 +1438,7 @@ static av_cold int sbg_read_header(AVFormatContext *avf)
st->codecpar->sample_rate = sbg->sample_rate;
st->codecpar->frame_size = sbg->frame_size;
avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
- st->probe_packets = 0;
+ st->internal->probe_packets = 0;
st->start_time = av_rescale(script.start_ts,
sbg->sample_rate, AV_TIME_BASE);
st->duration = script.end_ts == AV_NOPTS_VALUE ? AV_NOPTS_VALUE :