Fix recorder comment

This commit is contained in:
Romain Vimont 2021-04-18 17:23:09 +02:00
parent 89c2ef2c8d
commit 2453d86fdf

View file

@ -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;
}