diff options
author | James Almer <jamrial@gmail.com> | 2021-06-05 11:12:03 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-06-09 13:55:25 -0300 |
commit | 591b88e6787c4e678237f02a50421d101abd25c2 (patch) | |
tree | 129253009d5179d64b706069237bc3f8659e3eea /libavformat/fifo.c | |
parent | 39affa5f8e70fb364d197242a8c11703d593f012 (diff) | |
download | ffmpeg-591b88e6787c4e678237f02a50421d101abd25c2.tar.gz |
avformat: move AVStream.{first,cur}_dts to AVStreamInternal
They are private fields, no reason to have them exposed in a public header.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/fifo.c')
-rw-r--r-- | libavformat/fifo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/fifo.c b/libavformat/fifo.c index 50656f78b7..a9b59b6589 100644 --- a/libavformat/fifo.c +++ b/libavformat/fifo.c @@ -139,7 +139,7 @@ static int fifo_thread_write_header(FifoThreadContext *ctx) } for (i = 0;i < avf2->nb_streams; i++) - avf2->streams[i]->cur_dts = 0; + avf2->streams[i]->internal->cur_dts = 0; ret = avformat_write_header(avf2, &format_options); if (!ret) |