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/internal.h | |
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/internal.h')
-rw-r--r-- | libavformat/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index 970fccf6c2..9882454d59 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -635,7 +635,7 @@ int ff_seek_frame_binary(AVFormatContext *s, int stream_index, * @param timestamp new dts expressed in time_base of param ref_st * @param ref_st reference stream giving time_base of param timestamp */ -void ff_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp); +void avpriv_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp); int ff_find_last_ts(AVFormatContext *s, int stream_index, int64_t *ts, int64_t *pos, int64_t (*read_timestamp)(struct AVFormatContext *, int , int64_t *, int64_t )); |