From b9c5fdf6027010d15ee90a43aa023e45a5189097 Mon Sep 17 00:00:00 2001 From: James Almer Date: Sat, 1 May 2021 23:28:18 -0300 Subject: avformat: move AVStream.{parser,need_parsing} to AVStreamInternal Those are private fields, no reason to have them exposed in a public header. Signed-off-by: James Almer --- libavformat/mpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/mpeg.c') diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index fb1d54e52f..178e71d891 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -623,7 +623,7 @@ skip: st->codecpar->sample_rate = 8000; } st->internal->request_probe = request_probe; - st->need_parsing = AVSTREAM_PARSE_FULL; + st->internal->need_parsing = AVSTREAM_PARSE_FULL; found: if (st->discard >= AVDISCARD_ALL) -- cgit v1.2.3