X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=libhb%2Fdeblock.c;h=261b0b3017876add313e66b8f33a0c78fe4e72e2;hb=5d42c76946bc07b78a15aabcc6ebd5b68c07cc12;hp=dbf39c606d117bad3a73b2bf3d6fb4b8a5c1c23b;hpb=90fba27222b3467b91c29803f217c4d5335c7ad0;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/libhb/deblock.c b/libhb/deblock.c index dbf39c60..261b0b30 100644 --- a/libhb/deblock.c +++ b/libhb/deblock.c @@ -17,10 +17,10 @@ */ #include "hb.h" -#include "ffmpeg/avcodec.h" +#include "hbffmpeg.h" #include "mpeg2dec/mpeg2.h" -#define PP7_QP_DEFAULT 0 +#define PP7_QP_DEFAULT 5 #define PP7_MODE_DEFAULT 2 #define XMIN(a,b) ((a) < (b) ? (a) : (b)) @@ -405,8 +405,7 @@ hb_filter_private_t * hb_deblock_init( int pix_fmt, pv->pp7_src = (uint8_t*)malloc( pv->pp7_temp_stride*(h+8)*sizeof(uint8_t) ); - int buf_size = 3 * width * height / 2; - pv->buf_out = hb_buffer_init( buf_size ); + pv->buf_out = hb_video_buffer_init( width, height ); return pv; }