summaryrefslogtreecommitdiff
path: root/libavformat/nutenc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/nutenc.c')
-rw-r--r--libavformat/nutenc.c6
1 files changed, 6 insertions, 0 deletions
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.
*/