mirror of
https://github.com/asticode/go-astiav.git
synced 2025-09-26 20:21:15 +08:00
10 lines
207 B
Go
10 lines
207 B
Go
package astiav
|
|
|
|
//#include <libavdevice/avdevice.h>
|
|
import "C"
|
|
|
|
// https://ffmpeg.org/doxygen/7.0/group__lavd.html#ga7c90a3585267b55941ae2f7388c006b6
|
|
func RegisterAllDevices() {
|
|
C.avdevice_register_all()
|
|
}
|