diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-04-05 11:36:13 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-04-05 11:36:13 +0000 |
commit | 5e9b83f5d7e5b8c9182e2ee6a1baf3e86aec0a17 (patch) | |
tree | 61507a35cf84273707c9d0c595e8fa9b80162777 | |
parent | 5a7575078543bbf2ac350a92100d3e68e60f00c7 (diff) | |
download | ffmpeg-5e9b83f5d7e5b8c9182e2ee6a1baf3e86aec0a17.tar.gz |
antitime
Originally committed as revision 2968 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/dv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dv.c b/libavformat/dv.c index 58a70b023c..6ff94a7ff8 100644 --- a/libavformat/dv.c +++ b/libavformat/dv.c @@ -685,7 +685,7 @@ DVMuxContext* dv_init_mux(AVFormatContext* s) /* Ok, everything seems to be in working order */ c->frames = 0; c->has_audio = c->has_video = 0; - c->start_time = time(NULL); + c->start_time = 0; c->aspect = 0; /* 4:3 is the default */ if ((int)(av_q2d(vst->codec.sample_aspect_ratio) * vst->codec.width / vst->codec.height * 10) == 17) /* 16:9 */ c->aspect = 0x07; |