diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-09-01 18:00:53 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-09-01 18:00:53 +0000 |
commit | 2a4a62bffc513313de5b977ca6c00f560051047d (patch) | |
tree | fd93e9fbf7b275a9026e775da4ec38a8559ad4cb /libpostproc/postprocess.c | |
parent | bdf6972c4b7b2c60a8824e47b9b64e95686abbb6 (diff) | |
download | ffmpeg-2a4a62bffc513313de5b977ca6c00f560051047d.tar.gz |
Implement postproc_version().
Originally committed as revision 15148 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc/postprocess.c')
-rw-r--r-- | libpostproc/postprocess.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index a74a64718a..79db062d0a 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -90,6 +90,11 @@ try to unroll inner for(x=0 ... loop to avoid these damn if(x ... checks #include "postprocess.h" #include "postprocess_internal.h" +unsigned postproc_version(void) +{ + return LIBPOSTPROC_VERSION_INT; +} + #ifdef HAVE_ALTIVEC_H #include <altivec.h> #endif |