0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00
mpv/defaultopts.c

24 lines
527 B
C
Raw Normal View History

#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,
2008-04-21 04:18:40 +02:00
.loop_times = -1,
2008-04-16 06:11:12 +02:00
.user_correct_pts = -1,
.audio_id = -1,
.video_id = -1,
2008-04-21 05:55:23 +02:00
.playback_speed = 1.,
};
}
2008-04-16 06:11:12 +02:00
void set_default_mencoder_options(struct MPOpts *opts)
{
set_default_mplayer_options(opts);
opts->user_correct_pts = 0;
}