From b2e67b5a60c73c734f51b59d0c713622aeae3173 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Sun, 18 Apr 2021 17:23:09 +0200 Subject: [PATCH] Fix recorder comment --- app/src/recorder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/recorder.c b/app/src/recorder.c index 479bdb39..e33d1a3b 100644 --- a/app/src/recorder.c +++ b/app/src/recorder.c @@ -22,7 +22,7 @@ find_muxer(const char *name) { #else oformat = av_oformat_next(oformat); #endif - // until null or with name "mp4" + // until null or with having the requested name } while (oformat && strcmp(oformat->name, name)); return oformat; }