From 665132e6204766b1d43ce413d6b1cc2a1d34ea29 Mon Sep 17 00:00:00 2001 From: Vasyl' Vavrychuk Date: Sun, 30 Jan 2011 15:24:00 +0000 Subject: mpegts: remove get_pts duplicate of ff_parse_pes_pts. Signed-off-by: Vasyl' Vavrychuk Signed-off-by: Mans Rullgard --- libavformat/mpeg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/mpeg.h') diff --git a/libavformat/mpeg.h b/libavformat/mpeg.h index d09b2e81bc..ca019c9eb2 100644 --- a/libavformat/mpeg.h +++ b/libavformat/mpeg.h @@ -63,7 +63,7 @@ static const int lpcm_freq_tab[4] = { 48000, 96000, 44100, 32000 }; /** * Parse MPEG-PES five-byte timestamp */ -static inline int64_t ff_parse_pes_pts(uint8_t *buf) { +static inline int64_t ff_parse_pes_pts(const uint8_t *buf) { return (int64_t)(*buf & 0x0e) << 29 | (AV_RB16(buf+1) >> 1) << 15 | AV_RB16(buf+3) >> 1; -- cgit v1.2.3