Originally committed as revision 10031 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2007-08-09 20:56:42 +00:00
parent 6e6cf116d8
commit 491216c672
1 changed files with 6 additions and 0 deletions

View File

@ -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.
*/