shiguredo_libcamera 2026.1.0

Rust bindings for libcamera
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef LC_STREAM_H
#define LC_STREAM_H

#include "types.h"

#ifdef __cplusplus
extern "C" {
#endif

lc_stream_t* lc_stream_configuration_stream(
    const lc_stream_configuration_t* sc);
void lc_stream_ref_destroy(lc_stream_t* stream);

#ifdef __cplusplus
}
#endif

#endif /* LC_STREAM_H */