f_decoder_wrapper: fix log message incorrect for audio

This code is used by both video and audio, so the text should not talk
about video.
This commit is contained in:
wm4 2018-02-04 20:01:51 +01:00 committed by Kevin Mitchell
parent 09af5760bb
commit b79190561f
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ static void destroy(struct mp_filter *f)
{
struct priv *p = f->priv;
if (p->decoder) {
MP_VERBOSE(f, "Uninit video.\n");
MP_VERBOSE(f, "Uninit decoder.\n");
talloc_free(p->decoder->f);
p->decoder = NULL;
}