diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-06-08 08:27:53 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-07-10 17:10:49 +0200 |
commit | 84626b364babc27c5a3db454ebf6a02aeaa186fe (patch) | |
tree | 686ab526ca0ac930bc7bbcc0e4bb81591a83a0bf /libavcodec/internal.h | |
parent | 71a861cf4010ab835fab383a250f27903eb61a34 (diff) | |
download | ffmpeg-84626b364babc27c5a3db454ebf6a02aeaa186fe.tar.gz |
lavc: add support for codec-specific defaults.
Diffstat (limited to 'libavcodec/internal.h')
-rw-r--r-- | libavcodec/internal.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h index fe853ab87e..9a444fcae7 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -27,6 +27,11 @@ #include <stdint.h> #include "avcodec.h" +struct AVCodecDefault { + const uint8_t *key; + const uint8_t *value; +}; + /** * Determine whether pix_fmt is a hardware accelerated format. */ |