diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-12-01 01:07:24 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-12-01 19:33:30 +0100 |
commit | c9ff32215b433d505f251c1f212b1fa0a5e17b73 (patch) | |
tree | cbdbaaadd90ee4f16f0a4fe6afebea29e8a2c907 /libavdevice/version.h | |
parent | b5cedf8b66c79bcc380d66dec0b850c8d7797c45 (diff) | |
download | ffmpeg-c9ff32215b433d505f251c1f212b1fa0a5e17b73.tar.gz |
lavu/opt: allow to set sample and pixel format with av_opt_set_int()
This change requires the user to specify min and max value, and makes
possible to prevent the user to set AV_{SAMPLE,PIX}_FMT_NONE if
forbidden.
Add required ifdeffery in case of mixed libraries, when libavutil is
updated but not the other libraries.
This is a followup of 08d0969c1402ccec4dce44bd430128fb59d7b790.
Diffstat (limited to 'libavdevice/version.h')
-rw-r--r-- | libavdevice/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/version.h b/libavdevice/version.h index d5d5da5123..5eed4f5e1a 100644 --- a/libavdevice/version.h +++ b/libavdevice/version.h @@ -29,7 +29,7 @@ #define LIBAVDEVICE_VERSION_MAJOR 54 #define LIBAVDEVICE_VERSION_MINOR 3 -#define LIBAVDEVICE_VERSION_MICRO 101 +#define LIBAVDEVICE_VERSION_MICRO 102 #define LIBAVDEVICE_VERSION_INT AV_VERSION_INT(LIBAVDEVICE_VERSION_MAJOR, \ LIBAVDEVICE_VERSION_MINOR, \ |