From 491216c672723912af6e9647b26097b5b3c72b21 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 9 Aug 2007 20:56:42 +0000 Subject: put_t() Originally committed as revision 10031 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/nutenc.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'libavformat') diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c index 8475865504..3a97b7e38e 100644 --- a/libavformat/nutenc.c +++ b/libavformat/nutenc.c @@ -154,6 +154,12 @@ static void put_v(ByteIOContext *bc, uint64_t val){ put_byte(bc, val&127); } +static void put_t(NUTContext *nut, StreamContext *nus, ByteIOContext *bc, uint64_t val){ + val *= nut->time_base_count; + val += nus->time_base - nut->time_base; + put_v(bc, val); +} + /** * stores a string as vb. */ -- cgit v1.2.3