diff options
author | James Almer <jamrial@gmail.com> | 2017-11-05 14:59:47 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-11-07 23:20:50 -0300 |
commit | cd1ff3e45d45ce8d733b4acc8e23444c1a227d07 (patch) | |
tree | c3f6b3dc413d55ba09e12441e81b6185d651e911 /libavformat/internal.h | |
parent | 2c2f25eb8920129ef3cfe6da2e1cefdedc485965 (diff) | |
download | ffmpeg-cd1ff3e45d45ce8d733b4acc8e23444c1a227d07.tar.gz |
avformat: move priv_pts from AVStream to an internal struct
It has no reason to be in a public header, even if defined as private.
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index d136c79bdd..fcd47840a5 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -196,6 +196,8 @@ struct AVStreamInternal { * Whether the internal avctx needs to be updated from codecpar (after a late change to codecpar) */ int need_context_update; + + FFFrac *priv_pts; }; #ifdef __GNUC__ |