summaryrefslogtreecommitdiff
path: root/libavformat/brstm.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2021-06-05 11:09:03 -0300
committerJames Almer <jamrial@gmail.com>2021-06-09 13:55:25 -0300
commitc768233293a8ae43907d6dc3a7075a750dc12280 (patch)
tree0fead79710642ff7c621066f9c732d1e69bd8338 /libavformat/brstm.c
parente01bf559dfaeaadac8112af4ad4689901a344b92 (diff)
downloadffmpeg-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/brstm.c')
-rw-r--r--libavformat/brstm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/brstm.c b/libavformat/brstm.c
index f1f0f86ed5..601f73dd33 100644
--- a/libavformat/brstm.c
+++ b/libavformat/brstm.c
@@ -477,7 +477,7 @@ static int read_seek(AVFormatContext *s, int stream_index,
return ret;
b->current_block = timestamp;
- ff_update_cur_dts(s, st, timestamp * b->samples_per_block);
+ avpriv_update_cur_dts(s, st, timestamp * b->samples_per_block);
return 0;
}