introlab / opentera-webrtc-ros

ROS package for OpenTera WebRTC signaling server.
Apache License 2.0
16 stars 10 forks source link

When building doc with the GStreamer lib .so file in the package, lots of warnings as autosummary tries to import it #69

Closed philippewarren closed 1 year ago

philippewarren commented 1 year ago

Which fails, because it isn't a Python module .so, just a standard .so. It should be excluded from the autosummary generation.

One way to exclude it is to add an underscore prefix to it, but then we might need to make sure that it is still correctly loaded dynamically.

philippewarren commented 1 year ago

Found a way using autosummary_mock_imports and the full path to the lib (opentera_webrtc.native_client.libOpenteraWebrtcNativeGStreamer)

philippewarren commented 1 year ago

This was a bug in https://github.com/introlab/opentera-webrtc actually, fixed now.