1 parent a36ad99 commit 67588d4Copy full SHA for 67588d4
1 file changed
media-video/capture/src/wayland/stream.rs
@@ -187,12 +187,12 @@ impl UserStreamState {
187
let first_data = dma_data[0];
188
189
// check that the fd of all dma buf's are the same, as different ones are currently not supported
190
- if dma_data.iter().any(|data| data.fd != first_data.fd) {
191
- log::warn!(
192
- "Got dma buffers with different fds, discarding as this is not supported"
193
- );
194
- return;
195
- }
+ // if dma_data.iter().any(|data| data.fd != first_data.fd) {
+ // log::warn!(
+ // "Got dma buffers with different fds, discarding as this is not supported"
+ // );
+ // return;
+ // }
196
197
self.handle_dma_data(metas, datas, dma_data)
198
};
0 commit comments