0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

ao: remove opts field

Apparently unused.
This commit is contained in:
wm4 2014-03-07 15:24:39 +01:00
parent 41f2b26d11
commit 76eca81455
2 changed files with 0 additions and 2 deletions

View File

@ -141,7 +141,6 @@ static struct ao *ao_create(bool probing, struct mpv_global *global,
*ao = (struct ao) {
.driver = desc.p,
.probing = probing,
.opts = global->opts,
.encode_lavc_ctx = encode_lavc_ctx,
.input_ctx = input_ctx,
.samplerate = samplerate,

View File

@ -34,7 +34,6 @@ struct ao {
const struct ao_driver *driver;
void *priv;
struct encode_lavc_context *encode_lavc_ctx;
struct MPOpts *opts;
struct input_ctx *input_ctx;
struct mp_log *log; // Using e.g. "[ao/coreaudio]" as prefix
};