54 lines
2.0 KiB
Dart
54 lines
2.0 KiB
Dart
//
|
|
// Generated code. Do not modify.
|
|
// source: talk_expect.proto
|
|
//
|
|
// @dart = 2.12
|
|
|
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
|
|
|
import 'dart:core' as $core;
|
|
|
|
import 'package:protobuf/protobuf.dart' as $pb;
|
|
|
|
/// 视频类型
|
|
class TalkExpect_VideoTypeE extends $pb.ProtobufEnum {
|
|
static const TalkExpect_VideoTypeE NONE_V = TalkExpect_VideoTypeE._(0, _omitEnumNames ? '' : 'NONE_V');
|
|
static const TalkExpect_VideoTypeE H264 = TalkExpect_VideoTypeE._(1, _omitEnumNames ? '' : 'H264');
|
|
static const TalkExpect_VideoTypeE IMAGE = TalkExpect_VideoTypeE._(2, _omitEnumNames ? '' : 'IMAGE');
|
|
|
|
static const $core.List<TalkExpect_VideoTypeE> values = <TalkExpect_VideoTypeE> [
|
|
NONE_V,
|
|
H264,
|
|
IMAGE,
|
|
];
|
|
|
|
static final $core.Map<$core.int, TalkExpect_VideoTypeE> _byValue = $pb.ProtobufEnum.initByValue(values);
|
|
static TalkExpect_VideoTypeE? valueOf($core.int value) => _byValue[value];
|
|
|
|
const TalkExpect_VideoTypeE._($core.int v, $core.String n) : super(v, n);
|
|
}
|
|
|
|
/// 音频类型
|
|
class TalkExpect_AudioTypeE extends $pb.ProtobufEnum {
|
|
static const TalkExpect_AudioTypeE NONE_A = TalkExpect_AudioTypeE._(0, _omitEnumNames ? '' : 'NONE_A');
|
|
static const TalkExpect_AudioTypeE AAC = TalkExpect_AudioTypeE._(1, _omitEnumNames ? '' : 'AAC');
|
|
static const TalkExpect_AudioTypeE G711 = TalkExpect_AudioTypeE._(2, _omitEnumNames ? '' : 'G711');
|
|
|
|
static const $core.List<TalkExpect_AudioTypeE> values = <TalkExpect_AudioTypeE> [
|
|
NONE_A,
|
|
AAC,
|
|
G711,
|
|
];
|
|
|
|
static final $core.Map<$core.int, TalkExpect_AudioTypeE> _byValue = $pb.ProtobufEnum.initByValue(values);
|
|
static TalkExpect_AudioTypeE? valueOf($core.int value) => _byValue[value];
|
|
|
|
const TalkExpect_AudioTypeE._($core.int v, $core.String n) : super(v, n);
|
|
}
|
|
|
|
|
|
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|