blob: 800758d8efccf8225c4342582943581ac26b153c [file] [log] [blame]
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// Generated from Web IDL definitions.
import 'dart:js_interop';
typedef HevcBitstreamFormat = String;
@JS()
@staticInterop
@anonymous
class HevcEncoderConfig {
external factory HevcEncoderConfig({HevcBitstreamFormat format});
}
extension HevcEncoderConfigExtension on HevcEncoderConfig {
external set format(HevcBitstreamFormat value);
external HevcBitstreamFormat get format;
}
@JS()
@staticInterop
@anonymous
class VideoEncoderEncodeOptionsForHevc {
external factory VideoEncoderEncodeOptionsForHevc({int? quantizer});
}
extension VideoEncoderEncodeOptionsForHevcExtension
on VideoEncoderEncodeOptionsForHevc {
external set quantizer(int? value);
external int? get quantizer;
}