Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-11-11 16:37:48 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2015-11-11 16:37:48 +0300
commit611c22140a54db0baa863b26368e12d3a1d8267e (patch)
tree559b65b68d30e12abfb199277b6119c58df81627 /libavformat/internal.h
parentc03ffe1712e65b2f18d090d34db95ef18340bd0e (diff)
parent8de1ee9f725aa3c550f425bd3120bcd95d5b2ea8 (diff)
Merge commit '8de1ee9f725aa3c550f425bd3120bcd95d5b2ea8'
* commit '8de1ee9f725aa3c550f425bd3120bcd95d5b2ea8': lavf: deprecate compute_pkt_fields2 Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r--libavformat/internal.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h
index 1533722e8f..acfee94d8a 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -110,11 +110,23 @@ struct AVFormatInternal {
*/
AVRational offset_timebase;
+#if FF_API_COMPUTE_PKT_FIELDS2
+ int missing_ts_warning;
+#endif
+
int inject_global_side_data;
int avoid_negative_ts_use_pts;
};
+struct AVStreamInternal {
+ /**
+ * Set to 1 if the codec allows reordering, so pts can be different
+ * from dts.
+ */
+ int reorder;
+};
+
#ifdef __GNUC__
#define dynarray_add(tab, nb_ptr, elem)\
do {\