Commit 7a113333 authored by Michael Niedermayer's avatar Michael Niedermayer

libpostproc: support grayscale

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 25a41808
...@@ -1042,6 +1042,9 @@ void pp_postprocess(const uint8_t * src[3], const int srcStride[3], ...@@ -1042,6 +1042,9 @@ void pp_postprocess(const uint8_t * src[3], const int srcStride[3],
postProcess(src[0], srcStride[0], dst[0], dstStride[0], postProcess(src[0], srcStride[0], dst[0], dstStride[0],
width, height, QP_store, QPStride, 0, mode, c); width, height, QP_store, QPStride, 0, mode, c);
if (!(src[1] && src[2] && dst[1] && dst[2]))
return;
width = (width )>>c->hChromaSubSample; width = (width )>>c->hChromaSubSample;
height = (height)>>c->vChromaSubSample; height = (height)>>c->vChromaSubSample;
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#include "libavutil/avutil.h" #include "libavutil/avutil.h"
#define LIBPOSTPROC_VERSION_MAJOR 53 #define LIBPOSTPROC_VERSION_MAJOR 53
#define LIBPOSTPROC_VERSION_MINOR 2 #define LIBPOSTPROC_VERSION_MINOR 3
#define LIBPOSTPROC_VERSION_MICRO 100 #define LIBPOSTPROC_VERSION_MICRO 100
#define LIBPOSTPROC_VERSION_INT AV_VERSION_INT(LIBPOSTPROC_VERSION_MAJOR, \ #define LIBPOSTPROC_VERSION_INT AV_VERSION_INT(LIBPOSTPROC_VERSION_MAJOR, \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment