summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-03-13 22:20:17 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-13 22:38:53 +0100
commita048bd44b2563dc453e0c97bdca60cf028feaf50 (patch)
tree9160697af0c020fe8841326e81eff6e08670cd11 /libavcodec/avcodec.h
parent79f013a206394bfc90bbb72995f5cf8965181f51 (diff)
parent117b432748ca87de4cd0f09d9b1495545e264733 (diff)
Merge commit '117b432748ca87de4cd0f09d9b1495545e264733'
* commit '117b432748ca87de4cd0f09d9b1495545e264733': lavc: Introduce AVCodec internal capabilities Conflicts: libavcodec/utils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index a9dbff7235..8572a7be07 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -3262,6 +3262,11 @@ typedef struct AVCodec {
* Will be called when seeking
*/
void (*flush)(AVCodecContext *);
+ /**
+ * Internal codec capabilities.
+ * See FF_CODEC_CAP_* in internal.h
+ */
+ int caps_internal;
} AVCodec;
int av_codec_get_max_lowres(const AVCodec *codec);