summaryrefslogtreecommitdiffstats
path: root/audio/out/ao_lavc.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/out/ao_lavc.c')
-rw-r--r--audio/out/ao_lavc.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/audio/out/ao_lavc.c b/audio/out/ao_lavc.c
index a38c01e0b2..ad3865964c 100644
--- a/audio/out/ao_lavc.c
+++ b/audio/out/ao_lavc.c
@@ -345,11 +345,6 @@ static int play(struct ao *ao, void **data, int samples, int flags)
return taken;
}
-static void drain(struct ao *ao)
-{
- // pretend we support it, so generic code doesn't force a wait
-}
-
const struct ao_driver audio_out_lavc = {
.encode = true,
.description = "audio encoding using libavcodec",
@@ -361,7 +356,6 @@ const struct ao_driver audio_out_lavc = {
.uninit = uninit,
.get_space = get_space,
.play = play,
- .drain = drain,
};
// vim: sw=4 ts=4 et tw=80