diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-16 23:00:22 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-16 23:00:22 +0000 |
commit | edd259f92fa0856d5f7fbcf19704df95b58def7f (patch) | |
tree | 5e1ba47dad556c9c85aad12593cb268ba0705256 /libavcodec/avcodec.h | |
parent | ec1d1afc0953ceccc78069b3bc584ec8d29bdda7 (diff) | |
download | ffmpeg-edd259f92fa0856d5f7fbcf19704df95b58def7f.tar.gz |
Change the order of parameters for ff_eval_expr() and
ff_parse_and_eval_expr(), place the names for constants/functions
before the corresponding values.
This looks more readable, as the user is expected to know the names
before the values.
Originally committed as revision 23149 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 4a6712c921..417a8468b7 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -31,7 +31,7 @@ #define LIBAVCODEC_VERSION_MAJOR 52 #define LIBAVCODEC_VERSION_MINOR 67 -#define LIBAVCODEC_VERSION_MICRO 0 +#define LIBAVCODEC_VERSION_MICRO 1 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ |