summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTuomas Virtanen <katajakasa@gmail.com>2018-08-27 18:42:12 +0300
committerTuomas Virtanen <katajakasa@gmail.com>2018-08-27 18:42:12 +0300
commit4705736c8dafbda9ed262d9d399544ba1881a1d8 (patch)
tree095eb6b866bc01bc923d3fef87dc60cff9e32b2f /include
parent9946f7661af8799fbe67dec5a4ae4890c0c79fdf (diff)
Snappier seek
Diffstat (limited to 'include')
-rw-r--r--include/kitchensink/internal/audio/kitaudio.h1
-rw-r--r--include/kitchensink/internal/video/kitvideo.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/kitchensink/internal/audio/kitaudio.h b/include/kitchensink/internal/audio/kitaudio.h
index e42770b..c3db420 100644
--- a/include/kitchensink/internal/audio/kitaudio.h
+++ b/include/kitchensink/internal/audio/kitaudio.h
@@ -7,5 +7,6 @@
KIT_LOCAL Kit_Decoder* Kit_CreateAudioDecoder(const Kit_Source *src, int stream_index);
KIT_LOCAL int Kit_GetAudioDecoderData(Kit_Decoder *dec, unsigned char *buf, int len);
+KIT_LOCAL double Kit_GetAudioDecoderPTS(Kit_Decoder *dec);
#endif // KITAUDIO_H
diff --git a/include/kitchensink/internal/video/kitvideo.h b/include/kitchensink/internal/video/kitvideo.h
index 5c072ef..b393347 100644
--- a/include/kitchensink/internal/video/kitvideo.h
+++ b/include/kitchensink/internal/video/kitvideo.h
@@ -9,5 +9,6 @@
KIT_LOCAL Kit_Decoder* Kit_CreateVideoDecoder(const Kit_Source *src, int stream_index);
KIT_LOCAL int Kit_GetVideoDecoderData(Kit_Decoder *dec, SDL_Texture *texture);
+KIT_LOCAL double Kit_GetVideoDecoderPTS(Kit_Decoder *dec);
#endif // KITVIDEO_H