Advertisement
Guest User

Untitled

a guest
May 20th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. enum Compliance {
  2.         ComplianceExperimental = -2,    ///< Allow nonstandardized experimental things.
  3.         ComplianceUnofficial,       ///< Allow unofficial extensions
  4.         ComplianceNormal,
  5.         ComplianceStrict,           ///< Strictly conform to all the things in the spec no matter what consequences.
  6.         ComplianceVeryStrict            ///< Strictly conform to an older more strict version of the spec or reference software.
  7.     };
  8.  
  9.     // Constructor
  10.     QAVOutputFormat(AVOutputFormat *outputFormat=NULL);
  11.  
  12.     bool queryCodec(int id, Compliance compliance=ComplianceNormal) const;
  13.     bool queryCodec(const QAVCodec &codec, Compliance compliance=ComplianceNormal) const;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement