From 9eb067d059ce5f6f98cbbfcb10a2f39a44a66203 Mon Sep 17 00:00:00 2001
From: Masaki Tanaka <maki.rxrz@gmail.com>
Date: Tue, 9 Apr 2013 16:39:34 +0900
Subject: [PATCH 1/4] avcodec: Add field order information to
 AVCodecParserContext.

---
 libavcodec/avcodec.h |    1 +
 libavcodec/version.h |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 316d30a..23004e6 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -3401,6 +3401,7 @@ typedef struct AVCodecParserContext {
     int repeat_pict; /* XXX: Put it back in AVCodecContext. */
     int64_t pts;     /* pts of the current frame */
     int64_t dts;     /* dts of the current frame */
+    enum AVFieldOrder field_order;
 
     /* private data */
     int64_t last_pts;
diff --git a/libavcodec/version.h b/libavcodec/version.h
index 394bf1a..cfcacb7 100644
--- a/libavcodec/version.h
+++ b/libavcodec/version.h
@@ -27,7 +27,7 @@
  */
 
 #define LIBAVCODEC_VERSION_MAJOR 55
-#define LIBAVCODEC_VERSION_MINOR  1
+#define LIBAVCODEC_VERSION_MINOR  2
 #define LIBAVCODEC_VERSION_MICRO  0
 
 #define LIBAVCODEC_VERSION_INT  AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
-- 
1.7.7.msysgit.1

