summaryrefslogtreecommitdiffstats
path: root/defaultopts.c
blob: bc8a930e42f1422eb6211ca1d07bb8ebff9104bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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,
    };
}