summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-11-11 14:37:48 +0100
committerHendrik Leppkes <h.leppkes@gmail.com>2015-11-11 14:37:48 +0100
commit611c22140a54db0baa863b26368e12d3a1d8267e (patch)
tree559b65b68d30e12abfb199277b6119c58df81627 /libavformat/avformat.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/avformat.h')
-rw-r--r--libavformat/avformat.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index dff5ef6774..5283085872 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -807,6 +807,8 @@ typedef struct AVIndexEntry {
*/
#define AV_DISPOSITION_ATTACHED_PIC 0x0400
+typedef struct AVStreamInternal AVStreamInternal;
+
/**
* To specify text track kind (different from subtitles default).
*/
@@ -1169,6 +1171,12 @@ typedef struct AVStream {
AVRational display_aspect_ratio;
struct FFFrac *priv_pts;
+
+ /**
+ * An opaque field for libavformat internal usage.
+ * Must not be accessed in any way by callers.
+ */
+ AVStreamInternal *internal;
} AVStream;
AVRational av_stream_get_r_frame_rate(const AVStream *s);