mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-28 19:15:32 +00:00
13 lines
356 B
C++
13 lines
356 B
C++
|
#ifndef VIDEOPLAYER_DEFS_H
|
||
|
#define VIDEOPLAYER_DEFS_H
|
||
|
|
||
|
enum {
|
||
|
AV_SYNC_AUDIO_MASTER, // Play audio with no frame drops, sync video to audio
|
||
|
AV_SYNC_VIDEO_MASTER, // Play video with no frame drops, sync audio to video
|
||
|
AV_SYNC_EXTERNAL_MASTER, // Sync audio and video to an external clock
|
||
|
|
||
|
AV_SYNC_DEFAULT = AV_SYNC_EXTERNAL_MASTER
|
||
|
};
|
||
|
|
||
|
#endif
|