Advertisement
Guest User

Untitled

a guest
May 20th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. // Operators
  2. QAVOutputFormat &QAVOutputFormat::operator ++()
  3. {
  4.     if (_outputFormat)
  5.         _outputFormat = av_oformat_next(_outputFormat);
  6.     return *this;
  7. }
  8.  
  9. QAVOutputFormat QAVOutputFormat::operator ++(int)
  10. {
  11.     QAVOutputFormat tmp(_outputFormat);
  12.     operator ++();
  13.     return tmp;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement