Snap Live SDK  8.2.1
ACRCommonEmbedder.h
1 
15 #ifndef KAMID_COMMON_EMBEDDER_H
16 #define KAMID_COMMON_EMBEDDER_H
17 
18 #include "AudioCommonEmbedder.h"
19 #include <string>
20 #include <vector>
21 
22 namespace KantarMedia
23 {
24 
25  typedef enum
26  {
27  Watermarking_Techno_Undefined = 0,
28  Watermarking_Techno_KamId_Ink = 1,
29  Watermarking_Techno_KamId_AdId = 3,
30  Watermarking_Techno_KamId_EIDR = 4,
31  Watermarking_Techno_KamTL = 5
32  } Watermarking_Techno;
33 
48  {
49  public:
50  virtual ~IACRProcessor() {}
51  };
52 
53 
58 };
59 
60 #endif
Base interface for ACR processors.
Definition: ACRCommonEmbedder.h:47
Definition: ACRCommonEmbedder.h:22