mirror of
https://github.com/mpv-player/mpv
synced 2024-12-26 17:12:36 +00:00
20 lines
423 B
C
20 lines
423 B
C
#include <stddef.h>
|
|
#include "defaultopts.h"
|
|
#include "options.h"
|
|
|
|
void set_default_mplayer_options(struct MPOpts *opts)
|
|
{
|
|
*opts = (const struct MPOpts){
|
|
.audio_driver_list = NULL,
|
|
.video_driver_list = NULL,
|
|
.fixed_vo = 0,
|
|
.user_correct_pts = -1,
|
|
};
|
|
}
|
|
|
|
void set_default_mencoder_options(struct MPOpts *opts)
|
|
{
|
|
set_default_mplayer_options(opts);
|
|
opts->user_correct_pts = 0;
|
|
}
|