summaryrefslogtreecommitdiff
path: root/include/kitchensink/kitplayer.h
diff options
context:
space:
mode:
authorTuomas Virtanen <katajakasa@gmail.com>2016-01-14 04:22:02 +0200
committerTuomas Virtanen <katajakasa@gmail.com>2016-01-14 04:22:02 +0200
commitfb8b8f3b6b8b1905a3811ef3a6c396d0f3dc26a6 (patch)
tree0ed689179645fcde899f52e30fab4988891e2e7a /include/kitchensink/kitplayer.h
parent28e4719f81e84b54e397970d09a85accd2d35543 (diff)
Add seeking
Diffstat (limited to 'include/kitchensink/kitplayer.h')
-rw-r--r--include/kitchensink/kitplayer.h95
1 files changed, 57 insertions, 38 deletions
diff --git a/include/kitchensink/kitplayer.h b/include/kitchensink/kitplayer.h
index 4d99e26..a0f97ad 100644
--- a/include/kitchensink/kitplayer.h
+++ b/include/kitchensink/kitplayer.h
@@ -17,55 +17,70 @@ extern "C" {
#define KIT_CODECNAMEMAX 128
typedef enum Kit_PlayerState {
- KIT_STOPPED = 0,
- KIT_PLAYING,
- KIT_PAUSED,
- KIT_CLOSED
+ KIT_STOPPED = 0, ///< Playback stopped or has not started yet.
+ KIT_PLAYING, ///< Playback started & player is actively decoding.
+ KIT_PAUSED, ///< Playback paused; player is actively decoding but no new data is given out.
+ KIT_CLOSED ///< Playback is stopped and player is closing.
} Kit_PlayerState;
typedef struct Kit_AudioFormat {
- bool is_enabled; // Is stream enabled
- unsigned int format;
- bool is_signed;
- int bytes;
- int samplerate;
- int channels;
+ bool is_enabled; ///< Is stream enabled
+ unsigned int format; ///< SDL Audio Format
+ bool is_signed; ///< Signedness
+ int bytes; ///< Bytes per sample per channel
+ int samplerate; ///< Sampling rate
+ int channels; ///< Channels
} Kit_AudioFormat;
typedef struct Kit_VideoFormat {
- bool is_enabled; // Is stream enabled
- unsigned int format;
- int width;
- int height;
+ bool is_enabled; ///<Is stream enabled
+ unsigned int format; ///< SDL Pixel Format
+ int width; ///< Width in pixels
+ int height; ///< Height in pixels
} Kit_VideoFormat;
typedef struct Kit_Player {
- Kit_PlayerState state;
- Kit_VideoFormat vformat;
- Kit_AudioFormat aformat;
- double clock_sync; // Clock sync point
- double pause_start; // Timestamp of pause beginning
- SDL_Thread *dec_thread;
- SDL_mutex *vmutex;
- SDL_mutex *amutex;
- void *abuffer;
- void *vbuffer;
- void *vcodec_ctx;
- void *acodec_ctx;
- void *tmp_vframe;
- void *tmp_aframe;
- void *swr;
- void *sws;
- const Kit_Source *src;
+ // Local state
+ Kit_PlayerState state; ///< Playback state
+ Kit_VideoFormat vformat; ///< Video format information
+ Kit_AudioFormat aformat; ///< Audio format information
+
+ // Synchronization
+ double clock_sync; ///< Clock sync point
+ double pause_start; ///< Timestamp of pause beginning
+ double vclock_pos; ///< Video stream last pts
+
+ // Threading
+ SDL_Thread *dec_thread; ///< Decoder thread
+ SDL_mutex *vmutex; ///< Video stream buffer lock
+ SDL_mutex *amutex; ///< Audio stream buffer lock
+ SDL_mutex *cmutex; ///< Control stream buffer lock
+
+ // Buffers
+ void *abuffer; ///<Audio stream buffer
+ void *vbuffer; ///< Video stream buffer
+ void *cbuffer; ///< Control stream buffer
+
+ // FFmpeg internal state
+ void *vcodec_ctx; ///< FFmpeg: Video codec context
+ void *acodec_ctx; ///< FFmpeg: Audio codec context
+ void *tmp_vframe; ///< FFmpeg: Preallocated temporary video frame
+ void *tmp_aframe; ///< FFmpeg: Preallocated temporary audio frame
+ void *swr; ///< FFmpeg: Audio resampler
+ void *sws; ///< FFmpeg: Video converter
+
+ // Other
+ uint8_t seek_flag;
+ const Kit_Source *src; ///< Reference to Audio/Video source
} Kit_Player;
typedef struct Kit_PlayerInfo {
- char acodec[KIT_CODECMAX];
- char acodec_name[KIT_CODECNAMEMAX];
- char vcodec[KIT_CODECMAX];
- char vcodec_name[KIT_CODECNAMEMAX];
- Kit_VideoFormat video;
- Kit_AudioFormat audio;
+ char acodec[KIT_CODECMAX]; ///< Audio codec short name, eg "ogg", "mp3"
+ char acodec_name[KIT_CODECNAMEMAX]; ///< Audio codec long, more descriptive name
+ char vcodec[KIT_CODECMAX]; ///< Video codec short name, eg. "x264"
+ char vcodec_name[KIT_CODECNAMEMAX]; ///< Video codec long, more descriptive name
+ Kit_VideoFormat video; ///< Video format information
+ Kit_AudioFormat audio; ///< Audio format information
} Kit_PlayerInfo;
KIT_API Kit_Player* Kit_CreatePlayer(const Kit_Source *src);
@@ -73,7 +88,7 @@ KIT_API void Kit_ClosePlayer(Kit_Player *player);
KIT_API int Kit_UpdatePlayer(Kit_Player *player);
KIT_API int Kit_RefreshTexture(Kit_Player *player, SDL_Texture *texture);
-KIT_API int Kit_GetAudioData(Kit_Player *player, unsigned char *buffer, size_t length, size_t cur_buf_len);
+KIT_API int Kit_GetAudioData(Kit_Player *player, unsigned char *buffer, int length, int cur_buf_len);
KIT_API void Kit_GetPlayerInfo(const Kit_Player *player, Kit_PlayerInfo *info);
KIT_API Kit_PlayerState Kit_GetPlayerState(const Kit_Player *player);
@@ -81,6 +96,10 @@ KIT_API void Kit_PlayerPlay(Kit_Player *player);
KIT_API void Kit_PlayerStop(Kit_Player *player);
KIT_API void Kit_PlayerPause(Kit_Player *player);
+KIT_API int Kit_PlayerSeek(Kit_Player *player, double time);
+KIT_API double Kit_GetPlayerDuration(const Kit_Player *player);
+KIT_API double Kit_GetPlayerPosition(const Kit_Player *player);
+
#ifdef __cplusplus
}
#endif