libobs: Remove unused obs_*_info module pointer

These were likely originally used for the obs_*_get_module functions,
but no longer are. Additionally, they weren't even implemented for
anything but obs_source_info. Let's remove this before it hits stable.
This commit is contained in:
Sebastian Beckmann
2025-09-03 15:34:26 -04:00
committed by Ryan Foster
parent fc21c0f2f6
commit 5841db6efc
5 changed files with 0 additions and 13 deletions
-3
View File
@@ -344,9 +344,6 @@ struct obs_encoder_info {
bool (*encode_texture2)(void *data, struct encoder_texture *texture, int64_t pts, uint64_t lock_key,
uint64_t *next_key, struct encoder_packet *packet, bool *received_packet);
/** Pointer to module that generated this encoder **/
obs_module_t *module;
};
EXPORT void obs_register_encoder_s(const struct obs_encoder_info *info, size_t size);