diff options
author | James Almer <jamrial@gmail.com> | 2021-06-05 11:09:03 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-06-09 13:55:25 -0300 |
commit | c768233293a8ae43907d6dc3a7075a750dc12280 (patch) | |
tree | 0fead79710642ff7c621066f9c732d1e69bd8338 /libavformat/vpk.c | |
parent | e01bf559dfaeaadac8112af4ad4689901a344b92 (diff) | |
download | ffmpeg-c768233293a8ae43907d6dc3a7075a750dc12280.tar.gz |
avformat/utils: make ff_update_cur_dts() shared
libavdevice needs it.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/vpk.c')
-rw-r--r-- | libavformat/vpk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/vpk.c b/libavformat/vpk.c index 9eb3eb5362..d542a0806d 100644 --- a/libavformat/vpk.c +++ b/libavformat/vpk.c @@ -130,7 +130,7 @@ static int vpk_read_seek(AVFormatContext *s, int stream_index, return ret; vpk->current_block = timestamp; - ff_update_cur_dts(s, st, timestamp * samples_per_block); + avpriv_update_cur_dts(s, st, timestamp * samples_per_block); return 0; } |