summaryrefslogtreecommitdiff
path: root/libavformat/dump.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2021-05-01 23:35:45 -0300
committerJames Almer <jamrial@gmail.com>2021-05-07 09:27:21 -0300
commit7489f632815c98ad58c3db71d1a5239b5dae266c (patch)
treecedaa1ac51cbbc80432d52ec1ea77f49694288ab /libavformat/dump.c
parentb9c5fdf6027010d15ee90a43aa023e45a5189097 (diff)
downloadffmpeg-7489f632815c98ad58c3db71d1a5239b5dae266c.tar.gz
avformat: move AVStream.codec_info_nb_frames to AVStreamInternal
It's a private field, no reason to have it exposed in a public header. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/dump.c')
-rw-r--r--libavformat/dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dump.c b/libavformat/dump.c
index 04c93dd7d3..cf892de107 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -544,7 +544,7 @@ static void dump_stream_format(const AVFormatContext *ic, int i,
av_log(NULL, AV_LOG_INFO, "[0x%x]", st->id);
if (lang)
av_log(NULL, AV_LOG_INFO, "(%s)", lang->value);
- av_log(NULL, AV_LOG_DEBUG, ", %d, %d/%d", st->codec_info_nb_frames,
+ av_log(NULL, AV_LOG_DEBUG, ", %d, %d/%d", st->internal->codec_info_nb_frames,
st->time_base.num, st->time_base.den);
av_log(NULL, AV_LOG_INFO, ": %s", buf);