xuxiuxi
2017-08-01 e8726ef630f333452fc73fd72ce02aa2bdeef867
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: PbFaceList
 
#ifndef PROTOBUF_PbFaceList__INCLUDED
#define PROTOBUF_PbFaceList__INCLUDED
 
#include <string>
 
#include <google/protobuf/stubs/common.h>
 
#if GOOGLE_PROTOBUF_VERSION < 3002000
#error This file was generated by a newer version of protoc which is
#error incompatible with your Protocol Buffer headers.  Please update
#error your headers.
#endif
#if 3002000 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
#error This file was generated by an older version of protoc which is
#error incompatible with your Protocol Buffer headers.  Please
#error regenerate this file with a newer version of protoc.
#endif
 
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/arena.h>
#include <google/protobuf/arenastring.h>
#include <google/protobuf/generated_message_util.h>
#include <google/protobuf/metadata.h>
#include <google/protobuf/message.h>
#include <google/protobuf/repeated_field.h>  // IWYU pragma: export
#include <google/protobuf/extension_set.h>  // IWYU pragma: export
#include <google/protobuf/generated_enum_reflection.h>
#include <google/protobuf/unknown_field_set.h>
// @@protoc_insertion_point(includes)
class PbFaceList;
class PbFaceListDefaultTypeInternal;
extern PbFaceListDefaultTypeInternal _PbFaceList_default_instance_;
class PbFaceList_FaceListImage;
class PbFaceList_FaceListImageDefaultTypeInternal;
extern PbFaceList_FaceListImageDefaultTypeInternal _PbFaceList_FaceListImage_default_instance_;
 
namespace protobuf_PbFaceList {
// Internal implementation detail -- do not call these.
struct TableStruct {
  static const ::google::protobuf::uint32 offsets[];
  static void InitDefaultsImpl();
  static void Shutdown();
};
void AddDescriptors();
void InitDefaults();
}  // namespace protobuf_PbFaceList
 
enum PbFaceList_FaceListImage_ImageType {
  PbFaceList_FaceListImage_ImageType_MBFT_SDP = 1,
  PbFaceList_FaceListImage_ImageType_MBFT_FMTP = 2,
  PbFaceList_FaceListImage_ImageType_MBFT_INDEX = 3,
  PbFaceList_FaceListImage_ImageType_MBFT_PTR_AVFRAME = 4,
  PbFaceList_FaceListImage_ImageType_MBFT_H264_NALU = 5,
  PbFaceList_FaceListImage_ImageType_MBFT_H264_NALU_AUX = 6,
  PbFaceList_FaceListImage_ImageType_MBFT_JPEG = 7,
  PbFaceList_FaceListImage_ImageType_MBFT_YUV = 8,
  PbFaceList_FaceListImage_ImageType_MBFT_Y8 = 9,
  PbFaceList_FaceListImage_ImageType_MBFT_YUV420 = 10,
  PbFaceList_FaceListImage_ImageType_MBFT_NV12 = 11,
  PbFaceList_FaceListImage_ImageType_MBFT_RGB = 12,
  PbFaceList_FaceListImage_ImageType_MBFT_RGB888 = 13,
  PbFaceList_FaceListImage_ImageType_MBFT_RGB565 = 14,
  PbFaceList_FaceListImage_ImageType_MBFT_RGBA = 15,
  PbFaceList_FaceListImage_ImageType_MBFT_BGRA = 16,
  PbFaceList_FaceListImage_ImageType_MBFT_BGRA8888 = 17,
  PbFaceList_FaceListImage_ImageType_MBFT_ABGR8888 = 18,
  PbFaceList_FaceListImage_ImageType_MBFT_ARGB8888 = 19
};
bool PbFaceList_FaceListImage_ImageType_IsValid(int value);
const PbFaceList_FaceListImage_ImageType PbFaceList_FaceListImage_ImageType_ImageType_MIN = PbFaceList_FaceListImage_ImageType_MBFT_SDP;
const PbFaceList_FaceListImage_ImageType PbFaceList_FaceListImage_ImageType_ImageType_MAX = PbFaceList_FaceListImage_ImageType_MBFT_ARGB8888;
const int PbFaceList_FaceListImage_ImageType_ImageType_ARRAYSIZE = PbFaceList_FaceListImage_ImageType_ImageType_MAX + 1;
 
const ::google::protobuf::EnumDescriptor* PbFaceList_FaceListImage_ImageType_descriptor();
inline const ::std::string& PbFaceList_FaceListImage_ImageType_Name(PbFaceList_FaceListImage_ImageType value) {
  return ::google::protobuf::internal::NameOfEnum(
    PbFaceList_FaceListImage_ImageType_descriptor(), value);
}
inline bool PbFaceList_FaceListImage_ImageType_Parse(
    const ::std::string& name, PbFaceList_FaceListImage_ImageType* value) {
  return ::google::protobuf::internal::ParseNamedEnum<PbFaceList_FaceListImage_ImageType>(
    PbFaceList_FaceListImage_ImageType_descriptor(), name, value);
}
// ===================================================================
 
class PbFaceList_FaceListImage : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:PbFaceList.FaceListImage) */ {
 public:
  PbFaceList_FaceListImage();
  virtual ~PbFaceList_FaceListImage();
 
  PbFaceList_FaceListImage(const PbFaceList_FaceListImage& from);
 
  inline PbFaceList_FaceListImage& operator=(const PbFaceList_FaceListImage& from) {
    CopyFrom(from);
    return *this;
  }
 
  inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
    return _internal_metadata_.unknown_fields();
  }
 
  inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
    return _internal_metadata_.mutable_unknown_fields();
  }
 
  static const ::google::protobuf::Descriptor* descriptor();
  static const PbFaceList_FaceListImage& default_instance();
 
  static inline const PbFaceList_FaceListImage* internal_default_instance() {
    return reinterpret_cast<const PbFaceList_FaceListImage*>(
               &_PbFaceList_FaceListImage_default_instance_);
  }
 
  void Swap(PbFaceList_FaceListImage* other);
 
  // implements Message ----------------------------------------------
 
  inline PbFaceList_FaceListImage* New() const PROTOBUF_FINAL { return New(NULL); }
 
  PbFaceList_FaceListImage* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  void CopyFrom(const PbFaceList_FaceListImage& from);
  void MergeFrom(const PbFaceList_FaceListImage& from);
  void Clear() PROTOBUF_FINAL;
  bool IsInitialized() const PROTOBUF_FINAL;
 
  size_t ByteSizeLong() const PROTOBUF_FINAL;
  bool MergePartialFromCodedStream(
      ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  void SerializeWithCachedSizes(
      ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
      bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output)
      const PROTOBUF_FINAL {
    return InternalSerializeWithCachedSizesToArray(
        ::google::protobuf::io::CodedOutputStream::IsDefaultSerializationDeterministic(), output);
  }
  int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  private:
  void SharedCtor();
  void SharedDtor();
  void SetCachedSize(int size) const PROTOBUF_FINAL;
  void InternalSwap(PbFaceList_FaceListImage* other);
  private:
  inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
    return NULL;
  }
  inline void* MaybeArenaPtr() const {
    return NULL;
  }
  public:
 
  ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
 
  // nested types ----------------------------------------------------
 
  typedef PbFaceList_FaceListImage_ImageType ImageType;
  static const ImageType MBFT_SDP =
    PbFaceList_FaceListImage_ImageType_MBFT_SDP;
  static const ImageType MBFT_FMTP =
    PbFaceList_FaceListImage_ImageType_MBFT_FMTP;
  static const ImageType MBFT_INDEX =
    PbFaceList_FaceListImage_ImageType_MBFT_INDEX;
  static const ImageType MBFT_PTR_AVFRAME =
    PbFaceList_FaceListImage_ImageType_MBFT_PTR_AVFRAME;
  static const ImageType MBFT_H264_NALU =
    PbFaceList_FaceListImage_ImageType_MBFT_H264_NALU;
  static const ImageType MBFT_H264_NALU_AUX =
    PbFaceList_FaceListImage_ImageType_MBFT_H264_NALU_AUX;
  static const ImageType MBFT_JPEG =
    PbFaceList_FaceListImage_ImageType_MBFT_JPEG;
  static const ImageType MBFT_YUV =
    PbFaceList_FaceListImage_ImageType_MBFT_YUV;
  static const ImageType MBFT_Y8 =
    PbFaceList_FaceListImage_ImageType_MBFT_Y8;
  static const ImageType MBFT_YUV420 =
    PbFaceList_FaceListImage_ImageType_MBFT_YUV420;
  static const ImageType MBFT_NV12 =
    PbFaceList_FaceListImage_ImageType_MBFT_NV12;
  static const ImageType MBFT_RGB =
    PbFaceList_FaceListImage_ImageType_MBFT_RGB;
  static const ImageType MBFT_RGB888 =
    PbFaceList_FaceListImage_ImageType_MBFT_RGB888;
  static const ImageType MBFT_RGB565 =
    PbFaceList_FaceListImage_ImageType_MBFT_RGB565;
  static const ImageType MBFT_RGBA =
    PbFaceList_FaceListImage_ImageType_MBFT_RGBA;
  static const ImageType MBFT_BGRA =
    PbFaceList_FaceListImage_ImageType_MBFT_BGRA;
  static const ImageType MBFT_BGRA8888 =
    PbFaceList_FaceListImage_ImageType_MBFT_BGRA8888;
  static const ImageType MBFT_ABGR8888 =
    PbFaceList_FaceListImage_ImageType_MBFT_ABGR8888;
  static const ImageType MBFT_ARGB8888 =
    PbFaceList_FaceListImage_ImageType_MBFT_ARGB8888;
  static inline bool ImageType_IsValid(int value) {
    return PbFaceList_FaceListImage_ImageType_IsValid(value);
  }
  static const ImageType ImageType_MIN =
    PbFaceList_FaceListImage_ImageType_ImageType_MIN;
  static const ImageType ImageType_MAX =
    PbFaceList_FaceListImage_ImageType_ImageType_MAX;
  static const int ImageType_ARRAYSIZE =
    PbFaceList_FaceListImage_ImageType_ImageType_ARRAYSIZE;
  static inline const ::google::protobuf::EnumDescriptor*
  ImageType_descriptor() {
    return PbFaceList_FaceListImage_ImageType_descriptor();
  }
  static inline const ::std::string& ImageType_Name(ImageType value) {
    return PbFaceList_FaceListImage_ImageType_Name(value);
  }
  static inline bool ImageType_Parse(const ::std::string& name,
      ImageType* value) {
    return PbFaceList_FaceListImage_ImageType_Parse(name, value);
  }
 
  // accessors -------------------------------------------------------
 
  // repeated bytes img = 9;
  int img_size() const;
  void clear_img();
  static const int kImgFieldNumber = 9;
  const ::std::string& img(int index) const;
  ::std::string* mutable_img(int index);
  void set_img(int index, const ::std::string& value);
  #if LANG_CXX11
  void set_img(int index, ::std::string&& value);
  #endif
  void set_img(int index, const char* value);
  void set_img(int index, const void* value, size_t size);
  ::std::string* add_img();
  void add_img(const ::std::string& value);
  #if LANG_CXX11
  void add_img(::std::string&& value);
  #endif
  void add_img(const char* value);
  void add_img(const void* value, size_t size);
  const ::google::protobuf::RepeatedPtrField< ::std::string>& img() const;
  ::google::protobuf::RepeatedPtrField< ::std::string>* mutable_img();
 
  // required uint32 idx = 1;
  bool has_idx() const;
  void clear_idx();
  static const int kIdxFieldNumber = 1;
  ::google::protobuf::uint32 idx() const;
  void set_idx(::google::protobuf::uint32 value);
 
  // required uint32 st_track_id = 2;
  bool has_st_track_id() const;
  void clear_st_track_id();
  static const int kStTrackIdFieldNumber = 2;
  ::google::protobuf::uint32 st_track_id() const;
  void set_st_track_id(::google::protobuf::uint32 value);
 
  // required uint32 size = 3;
  bool has_size() const;
  void clear_size();
  static const int kSizeFieldNumber = 3;
  ::google::protobuf::uint32 size() const;
  void set_size(::google::protobuf::uint32 value);
 
  // required uint32 width = 5;
  bool has_width() const;
  void clear_width();
  static const int kWidthFieldNumber = 5;
  ::google::protobuf::uint32 width() const;
  void set_width(::google::protobuf::uint32 value);
 
  // required uint32 height = 6;
  bool has_height() const;
  void clear_height();
  static const int kHeightFieldNumber = 6;
  ::google::protobuf::uint32 height() const;
  void set_height(::google::protobuf::uint32 value);
 
  // optional uint32 top_left_x = 7;
  bool has_top_left_x() const;
  void clear_top_left_x();
  static const int kTopLeftXFieldNumber = 7;
  ::google::protobuf::uint32 top_left_x() const;
  void set_top_left_x(::google::protobuf::uint32 value);
 
  // optional uint32 top_left_y = 8;
  bool has_top_left_y() const;
  void clear_top_left_y();
  static const int kTopLeftYFieldNumber = 8;
  ::google::protobuf::uint32 top_left_y() const;
  void set_top_left_y(::google::protobuf::uint32 value);
 
  // required .PbFaceList.FaceListImage.ImageType type = 4 [default = MBFT_Y8];
  bool has_type() const;
  void clear_type();
  static const int kTypeFieldNumber = 4;
  ::PbFaceList_FaceListImage_ImageType type() const;
  void set_type(::PbFaceList_FaceListImage_ImageType value);
 
  // @@protoc_insertion_point(class_scope:PbFaceList.FaceListImage)
 private:
  void set_has_idx();
  void clear_has_idx();
  void set_has_st_track_id();
  void clear_has_st_track_id();
  void set_has_size();
  void clear_has_size();
  void set_has_type();
  void clear_has_type();
  void set_has_width();
  void clear_has_width();
  void set_has_height();
  void clear_has_height();
  void set_has_top_left_x();
  void clear_has_top_left_x();
  void set_has_top_left_y();
  void clear_has_top_left_y();
 
  // helper for ByteSizeLong()
  size_t RequiredFieldsByteSizeFallback() const;
 
  ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  ::google::protobuf::internal::HasBits<1> _has_bits_;
  mutable int _cached_size_;
  ::google::protobuf::RepeatedPtrField< ::std::string> img_;
  ::google::protobuf::uint32 idx_;
  ::google::protobuf::uint32 st_track_id_;
  ::google::protobuf::uint32 size_;
  ::google::protobuf::uint32 width_;
  ::google::protobuf::uint32 height_;
  ::google::protobuf::uint32 top_left_x_;
  ::google::protobuf::uint32 top_left_y_;
  int type_;
  friend struct protobuf_PbFaceList::TableStruct;
};
// -------------------------------------------------------------------
 
class PbFaceList : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:PbFaceList) */ {
 public:
  PbFaceList();
  virtual ~PbFaceList();
 
  PbFaceList(const PbFaceList& from);
 
  inline PbFaceList& operator=(const PbFaceList& from) {
    CopyFrom(from);
    return *this;
  }
 
  inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
    return _internal_metadata_.unknown_fields();
  }
 
  inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
    return _internal_metadata_.mutable_unknown_fields();
  }
 
  static const ::google::protobuf::Descriptor* descriptor();
  static const PbFaceList& default_instance();
 
  static inline const PbFaceList* internal_default_instance() {
    return reinterpret_cast<const PbFaceList*>(
               &_PbFaceList_default_instance_);
  }
 
  void Swap(PbFaceList* other);
 
  // implements Message ----------------------------------------------
 
  inline PbFaceList* New() const PROTOBUF_FINAL { return New(NULL); }
 
  PbFaceList* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  void CopyFrom(const PbFaceList& from);
  void MergeFrom(const PbFaceList& from);
  void Clear() PROTOBUF_FINAL;
  bool IsInitialized() const PROTOBUF_FINAL;
 
  size_t ByteSizeLong() const PROTOBUF_FINAL;
  bool MergePartialFromCodedStream(
      ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  void SerializeWithCachedSizes(
      ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
      bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output)
      const PROTOBUF_FINAL {
    return InternalSerializeWithCachedSizesToArray(
        ::google::protobuf::io::CodedOutputStream::IsDefaultSerializationDeterministic(), output);
  }
  int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  private:
  void SharedCtor();
  void SharedDtor();
  void SetCachedSize(int size) const PROTOBUF_FINAL;
  void InternalSwap(PbFaceList* other);
  private:
  inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
    return NULL;
  }
  inline void* MaybeArenaPtr() const {
    return NULL;
  }
  public:
 
  ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
 
  // nested types ----------------------------------------------------
 
  typedef PbFaceList_FaceListImage FaceListImage;
 
  // accessors -------------------------------------------------------
 
  // repeated .PbFaceList.FaceListImage images = 5;
  int images_size() const;
  void clear_images();
  static const int kImagesFieldNumber = 5;
  const ::PbFaceList_FaceListImage& images(int index) const;
  ::PbFaceList_FaceListImage* mutable_images(int index);
  ::PbFaceList_FaceListImage* add_images();
  ::google::protobuf::RepeatedPtrField< ::PbFaceList_FaceListImage >*
      mutable_images();
  const ::google::protobuf::RepeatedPtrField< ::PbFaceList_FaceListImage >&
      images() const;
 
  // required uint32 image_count = 2;
  bool has_image_count() const;
  void clear_image_count();
  static const int kImageCountFieldNumber = 2;
  ::google::protobuf::uint32 image_count() const;
  void set_image_count(::google::protobuf::uint32 value);
 
  // optional uint32 src_width = 3;
  bool has_src_width() const;
  void clear_src_width();
  static const int kSrcWidthFieldNumber = 3;
  ::google::protobuf::uint32 src_width() const;
  void set_src_width(::google::protobuf::uint32 value);
 
  // optional uint32 src_height = 4;
  bool has_src_height() const;
  void clear_src_height();
  static const int kSrcHeightFieldNumber = 4;
  ::google::protobuf::uint32 src_height() const;
  void set_src_height(::google::protobuf::uint32 value);
 
  // required uint32 magic = 1 [default = 11706629];
  bool has_magic() const;
  void clear_magic();
  static const int kMagicFieldNumber = 1;
  ::google::protobuf::uint32 magic() const;
  void set_magic(::google::protobuf::uint32 value);
 
  // @@protoc_insertion_point(class_scope:PbFaceList)
 private:
  void set_has_magic();
  void clear_has_magic();
  void set_has_image_count();
  void clear_has_image_count();
  void set_has_src_width();
  void clear_has_src_width();
  void set_has_src_height();
  void clear_has_src_height();
 
  // helper for ByteSizeLong()
  size_t RequiredFieldsByteSizeFallback() const;
 
  ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  ::google::protobuf::internal::HasBits<1> _has_bits_;
  mutable int _cached_size_;
  ::google::protobuf::RepeatedPtrField< ::PbFaceList_FaceListImage > images_;
  ::google::protobuf::uint32 image_count_;
  ::google::protobuf::uint32 src_width_;
  ::google::protobuf::uint32 src_height_;
  ::google::protobuf::uint32 magic_;
  friend struct protobuf_PbFaceList::TableStruct;
};
// ===================================================================
 
 
// ===================================================================
 
#if !PROTOBUF_INLINE_NOT_IN_HEADERS
// PbFaceList_FaceListImage
 
// required uint32 idx = 1;
inline bool PbFaceList_FaceListImage::has_idx() const {
  return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void PbFaceList_FaceListImage::set_has_idx() {
  _has_bits_[0] |= 0x00000001u;
}
inline void PbFaceList_FaceListImage::clear_has_idx() {
  _has_bits_[0] &= ~0x00000001u;
}
inline void PbFaceList_FaceListImage::clear_idx() {
  idx_ = 0u;
  clear_has_idx();
}
inline ::google::protobuf::uint32 PbFaceList_FaceListImage::idx() const {
  // @@protoc_insertion_point(field_get:PbFaceList.FaceListImage.idx)
  return idx_;
}
inline void PbFaceList_FaceListImage::set_idx(::google::protobuf::uint32 value) {
  set_has_idx();
  idx_ = value;
  // @@protoc_insertion_point(field_set:PbFaceList.FaceListImage.idx)
}
 
// required uint32 st_track_id = 2;
inline bool PbFaceList_FaceListImage::has_st_track_id() const {
  return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void PbFaceList_FaceListImage::set_has_st_track_id() {
  _has_bits_[0] |= 0x00000002u;
}
inline void PbFaceList_FaceListImage::clear_has_st_track_id() {
  _has_bits_[0] &= ~0x00000002u;
}
inline void PbFaceList_FaceListImage::clear_st_track_id() {
  st_track_id_ = 0u;
  clear_has_st_track_id();
}
inline ::google::protobuf::uint32 PbFaceList_FaceListImage::st_track_id() const {
  // @@protoc_insertion_point(field_get:PbFaceList.FaceListImage.st_track_id)
  return st_track_id_;
}
inline void PbFaceList_FaceListImage::set_st_track_id(::google::protobuf::uint32 value) {
  set_has_st_track_id();
  st_track_id_ = value;
  // @@protoc_insertion_point(field_set:PbFaceList.FaceListImage.st_track_id)
}
 
// required uint32 size = 3;
inline bool PbFaceList_FaceListImage::has_size() const {
  return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void PbFaceList_FaceListImage::set_has_size() {
  _has_bits_[0] |= 0x00000004u;
}
inline void PbFaceList_FaceListImage::clear_has_size() {
  _has_bits_[0] &= ~0x00000004u;
}
inline void PbFaceList_FaceListImage::clear_size() {
  size_ = 0u;
  clear_has_size();
}
inline ::google::protobuf::uint32 PbFaceList_FaceListImage::size() const {
  // @@protoc_insertion_point(field_get:PbFaceList.FaceListImage.size)
  return size_;
}
inline void PbFaceList_FaceListImage::set_size(::google::protobuf::uint32 value) {
  set_has_size();
  size_ = value;
  // @@protoc_insertion_point(field_set:PbFaceList.FaceListImage.size)
}
 
// required .PbFaceList.FaceListImage.ImageType type = 4 [default = MBFT_Y8];
inline bool PbFaceList_FaceListImage::has_type() const {
  return (_has_bits_[0] & 0x00000080u) != 0;
}
inline void PbFaceList_FaceListImage::set_has_type() {
  _has_bits_[0] |= 0x00000080u;
}
inline void PbFaceList_FaceListImage::clear_has_type() {
  _has_bits_[0] &= ~0x00000080u;
}
inline void PbFaceList_FaceListImage::clear_type() {
  type_ = 9;
  clear_has_type();
}
inline ::PbFaceList_FaceListImage_ImageType PbFaceList_FaceListImage::type() const {
  // @@protoc_insertion_point(field_get:PbFaceList.FaceListImage.type)
  return static_cast< ::PbFaceList_FaceListImage_ImageType >(type_);
}
inline void PbFaceList_FaceListImage::set_type(::PbFaceList_FaceListImage_ImageType value) {
  assert(::PbFaceList_FaceListImage_ImageType_IsValid(value));
  set_has_type();
  type_ = value;
  // @@protoc_insertion_point(field_set:PbFaceList.FaceListImage.type)
}
 
// required uint32 width = 5;
inline bool PbFaceList_FaceListImage::has_width() const {
  return (_has_bits_[0] & 0x00000008u) != 0;
}
inline void PbFaceList_FaceListImage::set_has_width() {
  _has_bits_[0] |= 0x00000008u;
}
inline void PbFaceList_FaceListImage::clear_has_width() {
  _has_bits_[0] &= ~0x00000008u;
}
inline void PbFaceList_FaceListImage::clear_width() {
  width_ = 0u;
  clear_has_width();
}
inline ::google::protobuf::uint32 PbFaceList_FaceListImage::width() const {
  // @@protoc_insertion_point(field_get:PbFaceList.FaceListImage.width)
  return width_;
}
inline void PbFaceList_FaceListImage::set_width(::google::protobuf::uint32 value) {
  set_has_width();
  width_ = value;
  // @@protoc_insertion_point(field_set:PbFaceList.FaceListImage.width)
}
 
// required uint32 height = 6;
inline bool PbFaceList_FaceListImage::has_height() const {
  return (_has_bits_[0] & 0x00000010u) != 0;
}
inline void PbFaceList_FaceListImage::set_has_height() {
  _has_bits_[0] |= 0x00000010u;
}
inline void PbFaceList_FaceListImage::clear_has_height() {
  _has_bits_[0] &= ~0x00000010u;
}
inline void PbFaceList_FaceListImage::clear_height() {
  height_ = 0u;
  clear_has_height();
}
inline ::google::protobuf::uint32 PbFaceList_FaceListImage::height() const {
  // @@protoc_insertion_point(field_get:PbFaceList.FaceListImage.height)
  return height_;
}
inline void PbFaceList_FaceListImage::set_height(::google::protobuf::uint32 value) {
  set_has_height();
  height_ = value;
  // @@protoc_insertion_point(field_set:PbFaceList.FaceListImage.height)
}
 
// optional uint32 top_left_x = 7;
inline bool PbFaceList_FaceListImage::has_top_left_x() const {
  return (_has_bits_[0] & 0x00000020u) != 0;
}
inline void PbFaceList_FaceListImage::set_has_top_left_x() {
  _has_bits_[0] |= 0x00000020u;
}
inline void PbFaceList_FaceListImage::clear_has_top_left_x() {
  _has_bits_[0] &= ~0x00000020u;
}
inline void PbFaceList_FaceListImage::clear_top_left_x() {
  top_left_x_ = 0u;
  clear_has_top_left_x();
}
inline ::google::protobuf::uint32 PbFaceList_FaceListImage::top_left_x() const {
  // @@protoc_insertion_point(field_get:PbFaceList.FaceListImage.top_left_x)
  return top_left_x_;
}
inline void PbFaceList_FaceListImage::set_top_left_x(::google::protobuf::uint32 value) {
  set_has_top_left_x();
  top_left_x_ = value;
  // @@protoc_insertion_point(field_set:PbFaceList.FaceListImage.top_left_x)
}
 
// optional uint32 top_left_y = 8;
inline bool PbFaceList_FaceListImage::has_top_left_y() const {
  return (_has_bits_[0] & 0x00000040u) != 0;
}
inline void PbFaceList_FaceListImage::set_has_top_left_y() {
  _has_bits_[0] |= 0x00000040u;
}
inline void PbFaceList_FaceListImage::clear_has_top_left_y() {
  _has_bits_[0] &= ~0x00000040u;
}
inline void PbFaceList_FaceListImage::clear_top_left_y() {
  top_left_y_ = 0u;
  clear_has_top_left_y();
}
inline ::google::protobuf::uint32 PbFaceList_FaceListImage::top_left_y() const {
  // @@protoc_insertion_point(field_get:PbFaceList.FaceListImage.top_left_y)
  return top_left_y_;
}
inline void PbFaceList_FaceListImage::set_top_left_y(::google::protobuf::uint32 value) {
  set_has_top_left_y();
  top_left_y_ = value;
  // @@protoc_insertion_point(field_set:PbFaceList.FaceListImage.top_left_y)
}
 
// repeated bytes img = 9;
inline int PbFaceList_FaceListImage::img_size() const {
  return img_.size();
}
inline void PbFaceList_FaceListImage::clear_img() {
  img_.Clear();
}
inline const ::std::string& PbFaceList_FaceListImage::img(int index) const {
  // @@protoc_insertion_point(field_get:PbFaceList.FaceListImage.img)
  return img_.Get(index);
}
inline ::std::string* PbFaceList_FaceListImage::mutable_img(int index) {
  // @@protoc_insertion_point(field_mutable:PbFaceList.FaceListImage.img)
  return img_.Mutable(index);
}
inline void PbFaceList_FaceListImage::set_img(int index, const ::std::string& value) {
  // @@protoc_insertion_point(field_set:PbFaceList.FaceListImage.img)
  img_.Mutable(index)->assign(value);
}
#if LANG_CXX11
inline void PbFaceList_FaceListImage::set_img(int index, ::std::string&& value) {
  // @@protoc_insertion_point(field_set:PbFaceList.FaceListImage.img)
  img_.Mutable(index)->assign(std::move(value));
}
#endif
inline void PbFaceList_FaceListImage::set_img(int index, const char* value) {
  img_.Mutable(index)->assign(value);
  // @@protoc_insertion_point(field_set_char:PbFaceList.FaceListImage.img)
}
inline void PbFaceList_FaceListImage::set_img(int index, const void* value, size_t size) {
  img_.Mutable(index)->assign(
    reinterpret_cast<const char*>(value), size);
  // @@protoc_insertion_point(field_set_pointer:PbFaceList.FaceListImage.img)
}
inline ::std::string* PbFaceList_FaceListImage::add_img() {
  // @@protoc_insertion_point(field_add_mutable:PbFaceList.FaceListImage.img)
  return img_.Add();
}
inline void PbFaceList_FaceListImage::add_img(const ::std::string& value) {
  img_.Add()->assign(value);
  // @@protoc_insertion_point(field_add:PbFaceList.FaceListImage.img)
}
#if LANG_CXX11
inline void PbFaceList_FaceListImage::add_img(::std::string&& value) {
  img_.Add()->assign(std::move(value));
  // @@protoc_insertion_point(field_add:PbFaceList.FaceListImage.img)
}
#endif
inline void PbFaceList_FaceListImage::add_img(const char* value) {
  img_.Add()->assign(value);
  // @@protoc_insertion_point(field_add_char:PbFaceList.FaceListImage.img)
}
inline void PbFaceList_FaceListImage::add_img(const void* value, size_t size) {
  img_.Add()->assign(reinterpret_cast<const char*>(value), size);
  // @@protoc_insertion_point(field_add_pointer:PbFaceList.FaceListImage.img)
}
inline const ::google::protobuf::RepeatedPtrField< ::std::string>&
PbFaceList_FaceListImage::img() const {
  // @@protoc_insertion_point(field_list:PbFaceList.FaceListImage.img)
  return img_;
}
inline ::google::protobuf::RepeatedPtrField< ::std::string>*
PbFaceList_FaceListImage::mutable_img() {
  // @@protoc_insertion_point(field_mutable_list:PbFaceList.FaceListImage.img)
  return &img_;
}
 
// -------------------------------------------------------------------
 
// PbFaceList
 
// required uint32 magic = 1 [default = 11706629];
inline bool PbFaceList::has_magic() const {
  return (_has_bits_[0] & 0x00000008u) != 0;
}
inline void PbFaceList::set_has_magic() {
  _has_bits_[0] |= 0x00000008u;
}
inline void PbFaceList::clear_has_magic() {
  _has_bits_[0] &= ~0x00000008u;
}
inline void PbFaceList::clear_magic() {
  magic_ = 11706629u;
  clear_has_magic();
}
inline ::google::protobuf::uint32 PbFaceList::magic() const {
  // @@protoc_insertion_point(field_get:PbFaceList.magic)
  return magic_;
}
inline void PbFaceList::set_magic(::google::protobuf::uint32 value) {
  set_has_magic();
  magic_ = value;
  // @@protoc_insertion_point(field_set:PbFaceList.magic)
}
 
// required uint32 image_count = 2;
inline bool PbFaceList::has_image_count() const {
  return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void PbFaceList::set_has_image_count() {
  _has_bits_[0] |= 0x00000001u;
}
inline void PbFaceList::clear_has_image_count() {
  _has_bits_[0] &= ~0x00000001u;
}
inline void PbFaceList::clear_image_count() {
  image_count_ = 0u;
  clear_has_image_count();
}
inline ::google::protobuf::uint32 PbFaceList::image_count() const {
  // @@protoc_insertion_point(field_get:PbFaceList.image_count)
  return image_count_;
}
inline void PbFaceList::set_image_count(::google::protobuf::uint32 value) {
  set_has_image_count();
  image_count_ = value;
  // @@protoc_insertion_point(field_set:PbFaceList.image_count)
}
 
// optional uint32 src_width = 3;
inline bool PbFaceList::has_src_width() const {
  return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void PbFaceList::set_has_src_width() {
  _has_bits_[0] |= 0x00000002u;
}
inline void PbFaceList::clear_has_src_width() {
  _has_bits_[0] &= ~0x00000002u;
}
inline void PbFaceList::clear_src_width() {
  src_width_ = 0u;
  clear_has_src_width();
}
inline ::google::protobuf::uint32 PbFaceList::src_width() const {
  // @@protoc_insertion_point(field_get:PbFaceList.src_width)
  return src_width_;
}
inline void PbFaceList::set_src_width(::google::protobuf::uint32 value) {
  set_has_src_width();
  src_width_ = value;
  // @@protoc_insertion_point(field_set:PbFaceList.src_width)
}
 
// optional uint32 src_height = 4;
inline bool PbFaceList::has_src_height() const {
  return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void PbFaceList::set_has_src_height() {
  _has_bits_[0] |= 0x00000004u;
}
inline void PbFaceList::clear_has_src_height() {
  _has_bits_[0] &= ~0x00000004u;
}
inline void PbFaceList::clear_src_height() {
  src_height_ = 0u;
  clear_has_src_height();
}
inline ::google::protobuf::uint32 PbFaceList::src_height() const {
  // @@protoc_insertion_point(field_get:PbFaceList.src_height)
  return src_height_;
}
inline void PbFaceList::set_src_height(::google::protobuf::uint32 value) {
  set_has_src_height();
  src_height_ = value;
  // @@protoc_insertion_point(field_set:PbFaceList.src_height)
}
 
// repeated .PbFaceList.FaceListImage images = 5;
inline int PbFaceList::images_size() const {
  return images_.size();
}
inline void PbFaceList::clear_images() {
  images_.Clear();
}
inline const ::PbFaceList_FaceListImage& PbFaceList::images(int index) const {
  // @@protoc_insertion_point(field_get:PbFaceList.images)
  return images_.Get(index);
}
inline ::PbFaceList_FaceListImage* PbFaceList::mutable_images(int index) {
  // @@protoc_insertion_point(field_mutable:PbFaceList.images)
  return images_.Mutable(index);
}
inline ::PbFaceList_FaceListImage* PbFaceList::add_images() {
  // @@protoc_insertion_point(field_add:PbFaceList.images)
  return images_.Add();
}
inline ::google::protobuf::RepeatedPtrField< ::PbFaceList_FaceListImage >*
PbFaceList::mutable_images() {
  // @@protoc_insertion_point(field_mutable_list:PbFaceList.images)
  return &images_;
}
inline const ::google::protobuf::RepeatedPtrField< ::PbFaceList_FaceListImage >&
PbFaceList::images() const {
  // @@protoc_insertion_point(field_list:PbFaceList.images)
  return images_;
}
 
#endif  // !PROTOBUF_INLINE_NOT_IN_HEADERS
// -------------------------------------------------------------------
 
 
// @@protoc_insertion_point(namespace_scope)
 
 
#ifndef SWIG
namespace google {
namespace protobuf {
 
template <> struct is_proto_enum< ::PbFaceList_FaceListImage_ImageType> : ::google::protobuf::internal::true_type {};
template <>
inline const EnumDescriptor* GetEnumDescriptor< ::PbFaceList_FaceListImage_ImageType>() {
  return ::PbFaceList_FaceListImage_ImageType_descriptor();
}
 
}  // namespace protobuf
}  // namespace google
#endif  // SWIG
 
// @@protoc_insertion_point(global_scope)
 
#endif  // PROTOBUF_PbFaceList__INCLUDED