diff options
author | Anton Khirnov <anton@khirnov.net> | 2020-10-09 09:22:36 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2020-10-28 14:58:28 +0100 |
commit | 7e87288f73242dac6344e65f892569102893fac0 (patch) | |
tree | 94ed44775f807c8e73d6f8447e44a65a5dee7399 /libavformat/internal.h | |
parent | 108864acee1d7b0cde653cee113f3001f1b8915a (diff) | |
download | ffmpeg-7e87288f73242dac6344e65f892569102893fac0.tar.gz |
lavf: move AVStream.interleaver_chunk_* to AVStreamInternal
Those are private fields, no reason to have them exposed in a public
header.
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index d8ceebb26e..87d62c51b2 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -225,6 +225,9 @@ struct AVStreamInternal { } *info; + int64_t interleaver_chunk_size; + int64_t interleaver_chunk_duration; + /** * stream probing state * -1 -> probing finished |