| // Copyright (c) 2023, 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. |
| |
| import 'dart:js_interop'; |
| |
| typedef HevcBitstreamFormat = String; |
| |
| @JS() |
| @staticInterop |
| @anonymous |
| class HevcEncoderConfig implements JSObject { |
| external factory HevcEncoderConfig({HevcBitstreamFormat format}); |
| } |
| |
| extension HevcEncoderConfigExtension on HevcEncoderConfig { |
| external set format(HevcBitstreamFormat value); |
| external HevcBitstreamFormat get format; |
| } |
| |
| @JS() |
| @staticInterop |
| @anonymous |
| class VideoEncoderEncodeOptionsForHevc implements JSObject { |
| external factory VideoEncoderEncodeOptionsForHevc({int? quantizer}); |
| } |
| |
| extension VideoEncoderEncodeOptionsForHevcExtension |
| on VideoEncoderEncodeOptionsForHevc { |
| external set quantizer(int? value); |
| external int? get quantizer; |
| } |