diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-11-25 15:45:58 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-11-30 00:01:53 +0100 |
commit | 08d0969c1402ccec4dce44bd430128fb59d7b790 (patch) | |
tree | 60a36c18b0619a928b74081552f7f3a6bc7efec8 /libavdevice/version.h | |
parent | 0b28abf903cd1fd61ba4a06009cd2cb7cc40e6e0 (diff) | |
download | ffmpeg-08d0969c1402ccec4dce44bd430128fb59d7b790.tar.gz |
lavu/opt: change the way default pixel and sample format value is set
Use the i64 field rather than the string value. Using a string to set a
default sample/pixel format is weird, also the new interface is more
consistent with the rest of the API.
This is technically an API break, but hopefully there are no applications
using this feature outside of FFmpeg. In order to save backward
compatibility with mixed libraries in case libavutil is updated but not
the other libraries, some ifdeffery hacks are added.
Note that the version check is only performed when class->version != 0,
since if it is not defined then we assume that no version was defined and
the class is not affected by the change.
We will luckily get rid of the hack at the next major bump.
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 a17818080b..d5d5da5123 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 100 +#define LIBAVDEVICE_VERSION_MICRO 101 #define LIBAVDEVICE_VERSION_INT AV_VERSION_INT(LIBAVDEVICE_VERSION_MAJOR, \ LIBAVDEVICE_VERSION_MINOR, \ |