* Parse MPEG-PES five-byte timestamp */
| 67 | * Parse MPEG-PES five-byte timestamp |
| 68 | */ |
| 69 | static inline int64_t ff_parse_pes_pts(const uint8_t *buf) { |
| 70 | return (int64_t)(*buf & 0x0e) << 29 | |
| 71 | (AV_RB16(buf+1) >> 1) << 15 | |
| 72 | AV_RB16(buf+3) >> 1; |
| 73 | } |
| 74 | |
| 75 | #endif /* AVFORMAT_MPEG_H */ |
no outgoing calls
no test coverage detected