1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00

18 lines
378 B
C++
Raw Normal View History

#ifndef VIDEOPLAYER_DEFS_H
#define VIDEOPLAYER_DEFS_H
2014-10-22 23:22:22 +02:00
namespace Video
{
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
};
2014-10-22 23:22:22 +02:00
}
#endif