summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorMasaki Tanaka <maki.rxrz@gmail.com>2013-04-09 16:39:34 +0900
committerAnton Khirnov <anton@khirnov.net>2013-05-03 08:16:10 +0200
commit507b1e454cf9953da3e18f33c9bd1fca78c97cb5 (patch)
tree686c47d0c70089be6f0f44addcb02f8c360c8e48 /libavcodec/avcodec.h
parent566b7a20fd0cab44d344329538d314454a0bcc2f (diff)
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.h2
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 {