2008-04-01 14:35:10 +00:00
|
|
|
#include <stddef.h>
|
2008-03-31 03:19:29 +00:00
|
|
|
#include "defaultopts.h"
|
|
|
|
#include "options.h"
|
|
|
|
|
|
|
|
void set_default_mplayer_options(struct MPOpts *opts)
|
|
|
|
{
|
|
|
|
*opts = (const struct MPOpts){
|
2008-04-01 14:35:10 +00:00
|
|
|
.audio_driver_list = NULL,
|
|
|
|
.video_driver_list = NULL,
|
2008-03-31 03:19:29 +00:00
|
|
|
.fixed_vo = 0,
|
2008-04-16 04:11:12 +00:00
|
|
|
.user_correct_pts = -1,
|
2008-03-31 03:19:29 +00:00
|
|
|
};
|
|
|
|
}
|
2008-04-16 04:11:12 +00:00
|
|
|
|
|
|
|
void set_default_mencoder_options(struct MPOpts *opts)
|
|
|
|
{
|
|
|
|
set_default_mplayer_options(opts);
|
|
|
|
opts->user_correct_pts = 0;
|
|
|
|
}
|