You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
378 B
C++
18 lines
378 B
C++
10 years ago
|
#ifndef VIDEOPLAYER_DEFS_H
|
||
|
#define VIDEOPLAYER_DEFS_H
|
||
|
|
||
10 years ago
|
namespace Video
|
||
|
{
|
||
|
|
||
10 years ago
|
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
|
||
|
};
|
||
|
|
||
10 years ago
|
}
|
||
|
|
||
10 years ago
|
#endif
|