diff options
author | Masaki Tanaka <maki.rxrz@gmail.com> | 2013-04-09 16:39:34 +0900 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-05-03 08:16:10 +0200 |
commit | 507b1e454cf9953da3e18f33c9bd1fca78c97cb5 (patch) | |
tree | 686c47d0c70089be6f0f44addcb02f8c360c8e48 /libavcodec/avcodec.h | |
parent | 566b7a20fd0cab44d344329538d314454a0bcc2f (diff) | |
download | ffmpeg-507b1e454cf9953da3e18f33c9bd1fca78c97cb5.tar.gz |
avcodec: Add field order information to AVCodecParserContext.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index c265d87fe6..968f9e557a 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -3537,6 +3537,8 @@ typedef struct AVCodecParserContext { * For all other types, this is in units of AVCodecContext.time_base. */ int duration; + + enum AVFieldOrder field_order; } AVCodecParserContext; typedef struct AVCodecParser { |