253 lines
11 KiB
Rust
253 lines
11 KiB
Rust
|
|
#![allow(unused_imports)]
|
||
|
|
use super::*;
|
||
|
|
use wasm_bindgen::prelude::*;
|
||
|
|
#[cfg(web_sys_unstable_apis)]
|
||
|
|
#[wasm_bindgen]
|
||
|
|
extern "C" {
|
||
|
|
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = VideoEncoderConfig)]
|
||
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||
|
|
#[doc = "The `VideoEncoderConfig` dictionary."]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API requires the following crate features to be activated: `VideoEncoderConfig`*"]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
|
pub type VideoEncoderConfig;
|
||
|
|
}
|
||
|
|
#[cfg(web_sys_unstable_apis)]
|
||
|
|
impl VideoEncoderConfig {
|
||
|
|
#[doc = "Construct a new `VideoEncoderConfig`."]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API requires the following crate features to be activated: `VideoEncoderConfig`*"]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
|
pub fn new(codec: &str, height: u32, width: u32) -> Self {
|
||
|
|
#[allow(unused_mut)]
|
||
|
|
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
|
||
|
|
ret.codec(codec);
|
||
|
|
ret.height(height);
|
||
|
|
ret.width(width);
|
||
|
|
ret
|
||
|
|
}
|
||
|
|
#[cfg(web_sys_unstable_apis)]
|
||
|
|
#[cfg(feature = "AlphaOption")]
|
||
|
|
#[doc = "Change the `alpha` field of this object."]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API requires the following crate features to be activated: `AlphaOption`, `VideoEncoderConfig`*"]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
|
pub fn alpha(&mut self, val: AlphaOption) -> &mut Self {
|
||
|
|
use wasm_bindgen::JsValue;
|
||
|
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("alpha"), &JsValue::from(val));
|
||
|
|
debug_assert!(
|
||
|
|
r.is_ok(),
|
||
|
|
"setting properties should never fail on our dictionary objects"
|
||
|
|
);
|
||
|
|
let _ = r;
|
||
|
|
self
|
||
|
|
}
|
||
|
|
#[cfg(web_sys_unstable_apis)]
|
||
|
|
#[doc = "Change the `bitrate` field of this object."]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API requires the following crate features to be activated: `VideoEncoderConfig`*"]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
|
pub fn bitrate(&mut self, val: f64) -> &mut Self {
|
||
|
|
use wasm_bindgen::JsValue;
|
||
|
|
let r = ::js_sys::Reflect::set(
|
||
|
|
self.as_ref(),
|
||
|
|
&JsValue::from("bitrate"),
|
||
|
|
&JsValue::from(val),
|
||
|
|
);
|
||
|
|
debug_assert!(
|
||
|
|
r.is_ok(),
|
||
|
|
"setting properties should never fail on our dictionary objects"
|
||
|
|
);
|
||
|
|
let _ = r;
|
||
|
|
self
|
||
|
|
}
|
||
|
|
#[cfg(web_sys_unstable_apis)]
|
||
|
|
#[doc = "Change the `codec` field of this object."]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API requires the following crate features to be activated: `VideoEncoderConfig`*"]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
|
pub fn codec(&mut self, val: &str) -> &mut Self {
|
||
|
|
use wasm_bindgen::JsValue;
|
||
|
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("codec"), &JsValue::from(val));
|
||
|
|
debug_assert!(
|
||
|
|
r.is_ok(),
|
||
|
|
"setting properties should never fail on our dictionary objects"
|
||
|
|
);
|
||
|
|
let _ = r;
|
||
|
|
self
|
||
|
|
}
|
||
|
|
#[cfg(web_sys_unstable_apis)]
|
||
|
|
#[doc = "Change the `displayHeight` field of this object."]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API requires the following crate features to be activated: `VideoEncoderConfig`*"]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
|
pub fn display_height(&mut self, val: u32) -> &mut Self {
|
||
|
|
use wasm_bindgen::JsValue;
|
||
|
|
let r = ::js_sys::Reflect::set(
|
||
|
|
self.as_ref(),
|
||
|
|
&JsValue::from("displayHeight"),
|
||
|
|
&JsValue::from(val),
|
||
|
|
);
|
||
|
|
debug_assert!(
|
||
|
|
r.is_ok(),
|
||
|
|
"setting properties should never fail on our dictionary objects"
|
||
|
|
);
|
||
|
|
let _ = r;
|
||
|
|
self
|
||
|
|
}
|
||
|
|
#[cfg(web_sys_unstable_apis)]
|
||
|
|
#[doc = "Change the `displayWidth` field of this object."]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API requires the following crate features to be activated: `VideoEncoderConfig`*"]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
|
pub fn display_width(&mut self, val: u32) -> &mut Self {
|
||
|
|
use wasm_bindgen::JsValue;
|
||
|
|
let r = ::js_sys::Reflect::set(
|
||
|
|
self.as_ref(),
|
||
|
|
&JsValue::from("displayWidth"),
|
||
|
|
&JsValue::from(val),
|
||
|
|
);
|
||
|
|
debug_assert!(
|
||
|
|
r.is_ok(),
|
||
|
|
"setting properties should never fail on our dictionary objects"
|
||
|
|
);
|
||
|
|
let _ = r;
|
||
|
|
self
|
||
|
|
}
|
||
|
|
#[cfg(web_sys_unstable_apis)]
|
||
|
|
#[doc = "Change the `framerate` field of this object."]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API requires the following crate features to be activated: `VideoEncoderConfig`*"]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
|
pub fn framerate(&mut self, val: f64) -> &mut Self {
|
||
|
|
use wasm_bindgen::JsValue;
|
||
|
|
let r = ::js_sys::Reflect::set(
|
||
|
|
self.as_ref(),
|
||
|
|
&JsValue::from("framerate"),
|
||
|
|
&JsValue::from(val),
|
||
|
|
);
|
||
|
|
debug_assert!(
|
||
|
|
r.is_ok(),
|
||
|
|
"setting properties should never fail on our dictionary objects"
|
||
|
|
);
|
||
|
|
let _ = r;
|
||
|
|
self
|
||
|
|
}
|
||
|
|
#[cfg(web_sys_unstable_apis)]
|
||
|
|
#[cfg(feature = "HardwareAcceleration")]
|
||
|
|
#[doc = "Change the `hardwareAcceleration` field of this object."]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API requires the following crate features to be activated: `HardwareAcceleration`, `VideoEncoderConfig`*"]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
|
pub fn hardware_acceleration(&mut self, val: HardwareAcceleration) -> &mut Self {
|
||
|
|
use wasm_bindgen::JsValue;
|
||
|
|
let r = ::js_sys::Reflect::set(
|
||
|
|
self.as_ref(),
|
||
|
|
&JsValue::from("hardwareAcceleration"),
|
||
|
|
&JsValue::from(val),
|
||
|
|
);
|
||
|
|
debug_assert!(
|
||
|
|
r.is_ok(),
|
||
|
|
"setting properties should never fail on our dictionary objects"
|
||
|
|
);
|
||
|
|
let _ = r;
|
||
|
|
self
|
||
|
|
}
|
||
|
|
#[cfg(web_sys_unstable_apis)]
|
||
|
|
#[doc = "Change the `height` field of this object."]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API requires the following crate features to be activated: `VideoEncoderConfig`*"]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
|
pub fn height(&mut self, val: u32) -> &mut Self {
|
||
|
|
use wasm_bindgen::JsValue;
|
||
|
|
let r =
|
||
|
|
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("height"), &JsValue::from(val));
|
||
|
|
debug_assert!(
|
||
|
|
r.is_ok(),
|
||
|
|
"setting properties should never fail on our dictionary objects"
|
||
|
|
);
|
||
|
|
let _ = r;
|
||
|
|
self
|
||
|
|
}
|
||
|
|
#[cfg(web_sys_unstable_apis)]
|
||
|
|
#[cfg(feature = "LatencyMode")]
|
||
|
|
#[doc = "Change the `latencyMode` field of this object."]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API requires the following crate features to be activated: `LatencyMode`, `VideoEncoderConfig`*"]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
|
pub fn latency_mode(&mut self, val: LatencyMode) -> &mut Self {
|
||
|
|
use wasm_bindgen::JsValue;
|
||
|
|
let r = ::js_sys::Reflect::set(
|
||
|
|
self.as_ref(),
|
||
|
|
&JsValue::from("latencyMode"),
|
||
|
|
&JsValue::from(val),
|
||
|
|
);
|
||
|
|
debug_assert!(
|
||
|
|
r.is_ok(),
|
||
|
|
"setting properties should never fail on our dictionary objects"
|
||
|
|
);
|
||
|
|
let _ = r;
|
||
|
|
self
|
||
|
|
}
|
||
|
|
#[cfg(web_sys_unstable_apis)]
|
||
|
|
#[doc = "Change the `scalabilityMode` field of this object."]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API requires the following crate features to be activated: `VideoEncoderConfig`*"]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
|
pub fn scalability_mode(&mut self, val: &str) -> &mut Self {
|
||
|
|
use wasm_bindgen::JsValue;
|
||
|
|
let r = ::js_sys::Reflect::set(
|
||
|
|
self.as_ref(),
|
||
|
|
&JsValue::from("scalabilityMode"),
|
||
|
|
&JsValue::from(val),
|
||
|
|
);
|
||
|
|
debug_assert!(
|
||
|
|
r.is_ok(),
|
||
|
|
"setting properties should never fail on our dictionary objects"
|
||
|
|
);
|
||
|
|
let _ = r;
|
||
|
|
self
|
||
|
|
}
|
||
|
|
#[cfg(web_sys_unstable_apis)]
|
||
|
|
#[doc = "Change the `width` field of this object."]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API requires the following crate features to be activated: `VideoEncoderConfig`*"]
|
||
|
|
#[doc = ""]
|
||
|
|
#[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
|
||
|
|
#[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
|
||
|
|
pub fn width(&mut self, val: u32) -> &mut Self {
|
||
|
|
use wasm_bindgen::JsValue;
|
||
|
|
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("width"), &JsValue::from(val));
|
||
|
|
debug_assert!(
|
||
|
|
r.is_ok(),
|
||
|
|
"setting properties should never fail on our dictionary objects"
|
||
|
|
);
|
||
|
|
let _ = r;
|
||
|
|
self
|
||
|
|
}
|
||
|
|
}
|