diff options
Diffstat (limited to 'src/libffmpeg/libavcodec/libpostproc/postprocess.h')
-rw-r--r-- | src/libffmpeg/libavcodec/libpostproc/postprocess.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/libffmpeg/libavcodec/libpostproc/postprocess.h b/src/libffmpeg/libavcodec/libpostproc/postprocess.h index b5d4fa319..114c88a38 100644 --- a/src/libffmpeg/libavcodec/libpostproc/postprocess.h +++ b/src/libffmpeg/libavcodec/libpostproc/postprocess.h @@ -13,7 +13,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef NEWPOSTPROCESS_H @@ -21,7 +21,7 @@ /** * @file postprocess.h - * @brief + * @brief * external api for the pp stuff */ @@ -29,6 +29,12 @@ extern "C" { #endif +#define LIBPOSTPROC_VERSION_INT ((51<<16)+(1<<8)+0) +#define LIBPOSTPROC_VERSION 51.1.0 +#define LIBPOSTPROC_BUILD LIBPOSTPROC_VERSION_INT + +#define LIBPOSTPROC_IDENT "postproc" AV_STRINGIFY(LIBPOSTPROC_VERSION) + #define PP_QUALITY_MAX 6 #define QP_STORE_T int8_t @@ -42,7 +48,7 @@ void pp_postprocess(uint8_t * src[3], int srcStride[3], uint8_t * dst[3], int dstStride[3], int horizontalSize, int verticalSize, QP_STORE_T *QP_store, int QP_stride, - pp_mode_t *mode, pp_context_t *ppContext, int pict_type); + pp_mode_t *mode, pp_context_t *ppContext, int pict_type); /** |