diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-11-02 14:17:17 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-11-03 12:14:26 +0100 |
commit | 481fdeeecfc2beafd7b87d6875839d428bd4e6b8 (patch) | |
tree | 4c6112ffa6d415bf25442bc39393487dc8470030 /libavutil/opt.h | |
parent | 7be09a91c2994131385f27c2f7726e04cf3841ce (diff) | |
download | ffmpeg-481fdeeecfc2beafd7b87d6875839d428bd4e6b8.tar.gz |
lavu/opt: add AV_OPT_SAMPLE_FMT option
Diffstat (limited to 'libavutil/opt.h')
-rw-r--r-- | libavutil/opt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/opt.h b/libavutil/opt.h index 81fefd9b16..5d2031a54a 100644 --- a/libavutil/opt.h +++ b/libavutil/opt.h @@ -227,6 +227,7 @@ enum AVOptionType{ AV_OPT_TYPE_CONST = 128, AV_OPT_TYPE_IMAGE_SIZE = MKBETAG('S','I','Z','E'), ///< offset must point to two consecutive integers AV_OPT_TYPE_PIXEL_FMT = MKBETAG('P','F','M','T'), + AV_OPT_TYPE_SAMPLE_FMT = MKBETAG('S','F','M','T'), #if FF_API_OLD_AVOPTIONS FF_OPT_TYPE_FLAGS = 0, FF_OPT_TYPE_INT, |