plugin: Use av_codec_is_encoder instead of custom check
This commit is contained in:
+1
-1
@@ -41,7 +41,7 @@ MODULE_EXPORT bool obs_module_load(void)
|
|||||||
// Register all codecs.
|
// Register all codecs.
|
||||||
AVCodec* cdc = nullptr;
|
AVCodec* cdc = nullptr;
|
||||||
while ((cdc = av_codec_next(cdc)) != nullptr) {
|
while ((cdc = av_codec_next(cdc)) != nullptr) {
|
||||||
if ((!cdc->encode2) && (!cdc->send_frame))
|
if (!av_codec_is_encoder(cdc))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if ((cdc->type == AVMediaType::AVMEDIA_TYPE_AUDIO)
|
if ((cdc->type == AVMediaType::AVMEDIA_TYPE_AUDIO)
|
||||||
|
|||||||
Reference in New Issue
Block a user