File: videodefs.hpp

package info (click to toggle)
openmw 0.49.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,992 kB
  • sloc: cpp: 372,479; xml: 2,149; sh: 1,403; python: 797; makefile: 26
file content (17 lines) | stat: -rw-r--r-- 378 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef VIDEOPLAYER_DEFS_H
#define VIDEOPLAYER_DEFS_H

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
};

}

#endif