diff options
author | Clément Bœsch <clement.boesch@smartjog.com> | 2011-11-16 17:40:00 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-11-28 14:06:02 +0100 |
commit | b1ca5634fdeac3bba8edee8a89e9246e9cb5188f (patch) | |
tree | 92bc2429d53800210b9137884f5c13e4be69a356 /libavcodec/options.c | |
parent | 2cf4bd7751c1920c840a3afc6dce39535def47f2 (diff) | |
download | ffmpeg-b1ca5634fdeac3bba8edee8a89e9246e9cb5188f.tar.gz |
mpeg12: raise timecode to codec context.
Diffstat (limited to 'libavcodec/options.c')
-rw-r--r-- | libavcodec/options.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/options.c b/libavcodec/options.c index e8fbb6b2fd..0a82d50612 100644 --- a/libavcodec/options.c +++ b/libavcodec/options.c @@ -578,6 +578,7 @@ int avcodec_get_context_defaults3(AVCodecContext *s, AVCodec *codec){ s->sample_aspect_ratio = (AVRational){0,1}; s->pix_fmt = PIX_FMT_NONE; s->sample_fmt = AV_SAMPLE_FMT_NONE; + s->timecode_frame_start = -1; s->reget_buffer = avcodec_default_reget_buffer; s->reordered_opaque = AV_NOPTS_VALUE; |