| 325 | } |
| 326 | |
| 327 | void WriteRatio(EncodeStream* stream, const Ratio& ratio) { |
| 328 | stream->writeEncodedInt32(ratio.numerator); |
| 329 | stream->writeEncodedUint32(ratio.denominator); |
| 330 | } |
| 331 | |
| 332 | void WriteTime(EncodeStream* stream, Frame time) { |
| 333 | // Since most of the time values are positive (time in keyframes), |
no test coverage detected