Browse Source

postprocess: add YUV 4:4:0 support

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.5
Michael Niedermayer 11 years ago
parent
commit
1d3c87d6cd
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      libpostproc/postprocess.h
  2. +1
    -1
      libpostproc/version.h

+ 1
- 0
libpostproc/postprocess.h View File

@@ -96,6 +96,7 @@ void pp_free_context(pp_context *ppContext);
#define PP_FORMAT_422 (0x00000001|PP_FORMAT)
#define PP_FORMAT_411 (0x00000002|PP_FORMAT)
#define PP_FORMAT_444 (0x00000000|PP_FORMAT)
#define PP_FORMAT_440 (0x00000010|PP_FORMAT)

#define PP_PICT_TYPE_QP2 0x00000010 ///< MPEG2 style QScale



+ 1
- 1
libpostproc/version.h View File

@@ -29,7 +29,7 @@
#include "libavutil/avutil.h"

#define LIBPOSTPROC_VERSION_MAJOR 53
#define LIBPOSTPROC_VERSION_MINOR 1
#define LIBPOSTPROC_VERSION_MINOR 2
#define LIBPOSTPROC_VERSION_MICRO 100

#define LIBPOSTPROC_VERSION_INT AV_VERSION_INT(LIBPOSTPROC_VERSION_MAJOR, \


Loading…
Cancel
Save