diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-01-12 13:31:55 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-01-27 10:52:42 +0100 |
commit | df0bb26aca7ff42bf57dfc8a5f7e19baf0e1c689 (patch) | |
tree | b0e4d13c3ceb11b638831ca665bc59c46ab43715 /libavformat/dvenc.c | |
parent | 3bbfd3026c6d692696066b041f4ba4ed9c938e5d (diff) | |
download | ffmpeg-df0bb26aca7ff42bf57dfc8a5f7e19baf0e1c689.tar.gz |
lavf: remove disabled FF_API_TIMESTAMP cruft
Diffstat (limited to 'libavformat/dvenc.c')
-rw-r--r-- | libavformat/dvenc.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavformat/dvenc.c b/libavformat/dvenc.c index bffad44b9f..56db4d2691 100644 --- a/libavformat/dvenc.c +++ b/libavformat/dvenc.c @@ -338,11 +338,6 @@ static DVMuxContext* dv_init_mux(AVFormatContext* s) c->frames = 0; c->has_audio = 0; c->has_video = 0; -#if FF_API_TIMESTAMP - if (s->timestamp) - c->start_time = s->timestamp; - else -#endif if (t = av_dict_get(s->metadata, "creation_time", NULL, 0)) c->start_time = ff_iso8601_to_unix_time(t->value); |