We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2e56e5 commit a94e14bCopy full SHA for a94e14b
src/AudioTools/AudioCodecs/MultiDecoder.h
@@ -281,6 +281,17 @@ class MultiDecoder : public AudioDecoder {
281
return actual_decoder.decoder->setCodecConfig(data, len);
282
}
283
284
+ /**
285
+ * @brief Provides access to the internal MIME detector
286
+ *
287
+ * Returns a reference to the MimeDetector instance used for automatic
288
+ * format detection. This allows direct access to configure custom MIME
289
+ * detection logic or to query detection results.
290
291
+ * @return Reference to the internal MimeDetector instance
292
+ */
293
+ MimeDetector& mimeDetector() { return mime_detector; }
294
+
295
protected:
296
/**
297
* @brief Information about a registered decoder
0 commit comments