Commit 491216c6 authored by Michael Niedermayer's avatar Michael Niedermayer

put_t()

Originally committed as revision 10031 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6e6cf116
......@@ -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.
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment