亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? frame.c

?? 圖象壓縮程序
?? C
?? 第 1 頁 / 共 2 頁
字號:
/***************************************************************************** * frame.c: h264 encoder library ***************************************************************************** * Copyright (C) 2003 Laurent Aimar * $Id: frame.c,v 1.10 2004/03/20 05:04:48 fenrir Exp $ * * Authors: Laurent Aimar <fenrir@via.ecp.fr> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * 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, USA. *****************************************************************************/#include <stdlib.h>#include <stdio.h>#include <string.h>#include <stdint.h>#include "common.h"x264_frame_t *x264_frame_new( x264_t *h ){    x264_frame_t   *frame = x264_malloc( sizeof( x264_frame_t ) );    int i;    int i_stride;    int i_lines;    /* allocate frame data (+64 for extra data for me) */    i_stride = ( ( h->param.i_width  + 15 )&0xfffff0 )+ 64;    i_lines  = ( ( h->param.i_height + 15 )&0xfffff0 );    frame->i_plane = 3;    for( i = 0; i < 3; i++ )    {        int i_div;        i_div = ( i == 0 ) ? 1 : 2;        frame->i_stride[i] = i_stride / i_div;        frame->i_lines[i] = i_lines / i_div;        frame->buffer[i] = x264_malloc( frame->i_stride[i] * ( frame->i_lines[i] + 64 / i_div ));        frame->plane[i] = ((uint8_t*)frame->buffer[i]) + ( frame->i_stride[i] * 32 + 32 ) / i_div;    }    frame->i_stride[3] = 0;    frame->i_lines[3] = 0;    frame->buffer[3] = NULL;    frame->plane[3] = NULL;    frame->i_poc = -1;    return frame;}void x264_frame_delete( x264_frame_t *frame ){    int i;    for( i = 0; i < frame->i_plane; i++ )    {        x264_free( frame->buffer[i] );    }    x264_free( frame );}void x264_frame_copy_picture( x264_frame_t *dst, x264_picture_t *src ){    int i;    int ch;    int i_stride;    /* y */    i_stride = X264_MIN( src->i_stride[0], dst->i_stride[0] );    for( i = 0; i < src->i_height; i++ )    {        memcpy( &dst->plane[0][ i * dst->i_stride[0]],                &src->plane[0][ i * src->i_stride[0]],                i_stride );    }    /* uv */    for( ch = 0; ch < 2; ch++ )    {        i_stride = X264_MIN( src->i_stride[1+ch], dst->i_stride[1+ch] );        for( i = 0; i < src->i_height/2; i++ )        {            memcpy( &dst->plane[1+ch][ i * dst->i_stride[1+ch]],                    &src->plane[1+ch][ i * src->i_stride[1+ch]],                    i_stride );        }    }}void x264_frame_expand_border( x264_frame_t *frame ){    int w;    int i, y;    for( i = 0; i < frame->i_plane; i++ )    {#define PPIXEL(x, y) ( frame->plane[i] + (x) +(y)*frame->i_stride[i] )        w = ( i == 0 ) ? 32 : 16;        for( y = 0; y < w; y++ )        {            /* upper band */            memcpy( PPIXEL(0,-y-1), PPIXEL(0,0), frame->i_stride[i] - 2 * w);            /* up left corner */            memset( PPIXEL(-w,-y-1 ), PPIXEL(0,0)[0], w );            /* up right corner */            memset( PPIXEL(frame->i_stride[i] - 2*w,-y-1), PPIXEL( frame->i_stride[i]-1-2*w,0)[0], w );            /* lower band */            memcpy( PPIXEL(0, frame->i_lines[i]+y), PPIXEL(0,frame->i_lines[i]-1), frame->i_stride[i] - 2 * w );            /* low left corner */            memset( PPIXEL(-w, frame->i_lines[i]+y), PPIXEL(0,frame->i_lines[i]-1)[0], w);            /* low right corner */            memset( PPIXEL(frame->i_stride[i]-2*w, frame->i_lines[i]+y), PPIXEL(frame->i_stride[i]-1-2*w,frame->i_lines[i]-1)[0], w);        }        for( y = 0; y < frame->i_lines[i]; y++ )        {            /* left band */            memset( PPIXEL( -w, y ), PPIXEL( 0, y )[0], w );            /* right band */            memset( PPIXEL( frame->i_stride[i]-2*w, y ), PPIXEL( frame->i_stride[i] - 1-2*w, y )[0], w );        }#undef PPIXEL    }}/* FIXME theses tables are duplicated with the ones in macroblock.c */static const uint8_t block_idx_xy[4][4] ={    { 0, 2, 8,  10},    { 1, 3, 9,  11},    { 4, 6, 12, 14},    { 5, 7, 13, 15}};static const int i_chroma_qp_table[52] ={     0,  1,  2,  3,  4,  5,  6,  7,  8,  9,    10, 11, 12, 13, 14, 15, 16, 17, 18, 19,    20, 21, 22, 23, 24, 25, 26, 27, 28, 29,    29, 30, 31, 32, 32, 33, 34, 34, 35, 35,    36, 36, 37, 37, 37, 38, 38, 38, 39, 39,    39, 39};/* Deblocking filter (p153) */static const int i_alpha_table[52] ={     0,  0,  0,  0,  0,  0,  0,  0,  0,  0,     0,  0,  0,  0,  0,  0,  4,  4,  5,  6,     7,  8,  9, 10, 12, 13, 15, 17, 20, 22,    25, 28, 32, 36, 40, 45, 50, 56, 63, 71,    80, 90,101,113,127,144,162,182,203,226,    255, 255};static const int i_beta_table[52] ={     0,  0,  0,  0,  0,  0,  0,  0,  0,  0,     0,  0,  0,  0,  0,  0,  2,  2,  2,  3,     3,  3,  3,  4,  4,  4,  6,  6,  7,  7,     8,  8,  9,  9, 10, 10, 11, 11, 12, 12,    13, 13, 14, 14, 15, 15, 16, 16, 17, 17,    18, 18};static const int i_tc0_table[52][3] ={    { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 },    { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 },    { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 1 },    { 0, 0, 1 }, { 0, 0, 1 }, { 0, 0, 1 }, { 0, 1, 1 }, { 0, 1, 1 }, { 1, 1, 1 },    { 1, 1, 1 }, { 1, 1, 1 }, { 1, 1, 1 }, { 1, 1, 2 }, { 1, 1, 2 }, { 1, 1, 2 },    { 1, 1, 2 }, { 1, 2, 3 }, { 1, 2, 3 }, { 2, 2, 3 }, { 2, 2, 4 }, { 2, 3, 4 },    { 2, 3, 4 }, { 3, 3, 5 }, { 3, 4, 6 }, { 3, 4, 6 }, { 4, 5, 7 }, { 4, 5, 8 },    { 4, 6, 9 }, { 5, 7,10 }, { 6, 8,11 }, { 6, 8,13 }, { 7,10,14 }, { 8,11,16 },    { 9,12,18 }, {10,13,20 }, {11,15,23 }, {13,17,25 }};/* From ffmpeg */static inline int clip_uint8( int a ){    if (a&(~255))        return (-a)>>31;    else        return a;}static inline void deblocking_filter_edgev( x264_t *h, uint8_t *pix, int i_pix_stride, int bS[4], int i_QP ){    int i, d;    const int i_index_a = x264_clip3( i_QP + h->sh.i_alpha_c0_offset, 0, 51 );    const int alpha = i_alpha_table[i_index_a];    const int beta  = i_beta_table[x264_clip3( i_QP + h->sh.i_beta_offset, 0, 51 )];    for( i = 0; i < 4; i++ )    {        if( bS[i] == 0 )        {            pix += 4 * i_pix_stride;            continue;        }        if( bS[i] < 4 )        {            const int tc0 = i_tc0_table[i_index_a][bS[i] - 1];            /* 4px edge length */            for( d = 0; d < 4; d++ )            {                const int p0 = pix[-1];                const int p1 = pix[-2];                const int p2 = pix[-3];                const int q0 = pix[0];                const int q1 = pix[1];                const int q2 = pix[2];                if( abs( p0 - q0 ) < alpha &&                    abs( p1 - p0 ) < beta &&                    abs( q1 - q0 ) < beta )                {                    int tc = tc0;                    int i_delta;                    if( abs( p2 - p0 ) < beta )                    {                        pix[-2] = p1 + x264_clip3( ( p2 + ( ( p0 + q0 + 1 ) >> 1 ) - ( p1 << 1 ) ) >> 1, -tc0, tc0 );                        tc++;                    }                    if( abs( q2 - q0 ) < beta )                    {                        pix[1] = q1 + x264_clip3( ( q2 + ( ( p0 + q0 + 1 ) >> 1 ) - ( q1 << 1 ) ) >> 1, -tc0, tc0 );                        tc++;                    }                    i_delta = x264_clip3( (((q0 - p0 ) << 2) + (p1 - q1) + 4) >> 3, -tc, tc );                    pix[-1] = clip_uint8( p0 + i_delta );    /* p0' */                    pix[0]  = clip_uint8( q0 - i_delta );    /* q0' */                }                pix += i_pix_stride;            }        }        else        {            /* 4px edge length */            for( d = 0; d < 4; d++ )            {                const int p0 = pix[-1];                const int p1 = pix[-2];                const int p2 = pix[-3];                const int q0 = pix[0];                const int q1 = pix[1];                const int q2 = pix[2];                if( abs( p0 - q0 ) < alpha &&                    abs( p1 - p0 ) < beta &&                    abs( q1 - q0 ) < beta )                {                    if( abs( p0 - q0 ) < (( alpha >> 2 ) + 2 ) )                    {                        if( abs( p2 - p0 ) < beta )                        {                            const int p3 = pix[-4];                            /* p0', p1', p2' */                            pix[-1] = ( p2 + 2*p1 + 2*p0 + 2*q0 + q1 + 4 ) >> 3;                            pix[-2] = ( p2 + p1 + p0 + q0 + 2 ) >> 2;                            pix[-3] = ( 2*p3 + 3*p2 + p1 + p0 + q0 + 4 ) >> 3;                        }                        else                        {                            /* p0' */                            pix[-1] = ( 2*p1 + p0 + q1 + 2 ) >> 2;                        }                        if( abs( q2 - q0 ) < beta )                        {                            const int q3 = pix[3];                            /* q0', q1', q2' */                            pix[0] = ( p1 + 2*p0 + 2*q0 + 2*q1 + q2 + 4 ) >> 3;                            pix[1] = ( p0 + q0 + q1 + q2 + 2 ) >> 2;                            pix[2] = ( 2*q3 + 3*q2 + q1 + q0 + p0 + 4 ) >> 3;                        }                        else                        {                            /* q0' */                            pix[0] = ( 2*q1 + q0 + p1 + 2 ) >> 2;                        }                    }                    else                    {                        /* p0', q0' */                        pix[-1] = ( 2*p1 + p0 + q1 + 2 ) >> 2;                        pix[0] = ( 2*q1 + q0 + p1 + 2 ) >> 2;                    }                }                pix += i_pix_stride;            }        }    }}static inline void deblocking_filter_edgecv( x264_t *h, uint8_t *pix, int i_pix_stride, int bS[4], int i_QP ){    int i, d;    const int i_index_a = x264_clip3( i_QP + h->sh.i_alpha_c0_offset, 0, 51 );    const int alpha = i_alpha_table[i_index_a];    const int beta  = i_beta_table[x264_clip3( i_QP + h->sh.i_beta_offset, 0, 51 )];    for( i = 0; i < 4; i++ )    {        if( bS[i] == 0 )        {            pix += 2 * i_pix_stride;            continue;        }        if( bS[i] < 4 )        {            const int tc = i_tc0_table[i_index_a][bS[i] - 1] + 1;            /* 2px edge length (because we use same bS than the one for luma) */            for( d = 0; d < 2; d++ )            {                const int p0 = pix[-1];

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
免费成人你懂的| 欧美二区三区91| 91精品国产色综合久久ai换脸| 久久亚洲精品国产精品紫薇| 亚洲另类春色国产| 国产精品影视在线观看| 欧美三级视频在线播放| 国产精品免费丝袜| 国产一区欧美二区| 91精品蜜臀在线一区尤物| 亚洲精品免费在线| 成人一区二区三区在线观看| 日韩一级片网站| 亚洲chinese男男1069| 91丨porny丨最新| 一区在线播放视频| 国产一区二区三区免费在线观看| 欧美日韩一区二区三区四区五区| 国产色91在线| 国产乱码精品一区二区三区忘忧草| 欧美群妇大交群的观看方式| 亚洲精品v日韩精品| 99久久er热在这里只有精品15| 精品乱码亚洲一区二区不卡| 青青草国产成人av片免费| 欧美三级蜜桃2在线观看| 一区二区三区欧美视频| 一本大道av一区二区在线播放| 国产欧美精品日韩区二区麻豆天美| 韩国精品免费视频| 久久精品人人做人人综合| 久久99国产精品久久| 日韩欧美视频在线| 久久66热偷产精品| 欧美videos大乳护士334| 麻豆91在线播放免费| 日韩女优视频免费观看| 久久精品国产免费| 精品国产青草久久久久福利| 久久99国产精品麻豆| 久久蜜桃av一区精品变态类天堂| 国内国产精品久久| 日本一区二区在线不卡| eeuss鲁片一区二区三区| 成人免费在线视频| 欧美日韩精品欧美日韩精品一 | 色综合久久综合网97色综合 | 一区二区三区在线免费观看| 91在线视频网址| 亚洲伊人色欲综合网| 欧美乱妇15p| 精品亚洲成a人| 欧美国产在线观看| 色综合久久88色综合天天6| 午夜影院久久久| 日韩欧美色综合网站| 成人在线视频一区二区| 亚洲一区二区在线免费看| 欧美一区二区三区四区视频| 国产一区二区三区电影在线观看| 国产精品乱码久久久久久| 日本丶国产丶欧美色综合| 天天av天天翘天天综合网 | 狠狠色狠狠色综合| 中文字幕av不卡| 欧美揉bbbbb揉bbbbb| 久久成人免费网站| 自拍偷自拍亚洲精品播放| 7777精品久久久大香线蕉| 国产成人精品一区二区三区四区 | 欧美久久一区二区| 国产精一品亚洲二区在线视频| 一区免费观看视频| 欧美成人bangbros| 日本道在线观看一区二区| 精品一区二区三区不卡| ●精品国产综合乱码久久久久| 欧美日韩黄色影视| 99久久99久久精品免费看蜜桃| 亚洲午夜在线视频| 国产精品国产三级国产专播品爱网 | 亚洲三级在线观看| 欧美大片一区二区三区| 欧洲激情一区二区| 成人av在线一区二区三区| 日本不卡在线视频| 亚洲黄色av一区| 国产精品久久久久久久久免费丝袜 | 免费成人在线网站| 亚洲久草在线视频| 国产丝袜在线精品| 欧美成人一区二区三区片免费| 91在线播放网址| 国产高清无密码一区二区三区| 亚洲sss视频在线视频| **欧美大码日韩| 国产欧美一区二区精品性色| 91精品国产乱| 欧美午夜宅男影院| 91蝌蚪国产九色| 成人黄色免费短视频| 国产麻豆视频一区二区| 久久精品国产久精国产| 日日骚欧美日韩| 丝袜亚洲精品中文字幕一区| 一区二区视频在线| 伊人一区二区三区| 亚洲免费观看高清在线观看| 国产精品视频第一区| 国产欧美日韩一区二区三区在线观看| 日韩免费电影网站| 欧美精品一区二区三区一线天视频| 欧美日韩视频在线一区二区| 欧美体内she精高潮| 在线观看91视频| 欧美日韩精品三区| 欧美一区二区三区在线看| 欧美一区欧美二区| 在线综合+亚洲+欧美中文字幕| 欧美日韩一二三区| 欧美一区二区私人影院日本| 91精品婷婷国产综合久久竹菊| 3atv一区二区三区| 日韩精品专区在线影院重磅| 欧美电影免费观看高清完整版在线 | 91精品国产黑色紧身裤美女| 日韩欧美一区二区三区在线| 精品国产乱码久久久久久蜜臀| 久久免费电影网| 久久9热精品视频| 国产精品白丝jk白祙喷水网站| 国产.欧美.日韩| 99久精品国产| 在线一区二区三区四区| 欧美二区乱c少妇| 国产午夜精品一区二区三区嫩草| 中文字幕国产一区二区| 日韩伦理av电影| 天堂精品中文字幕在线| 韩国毛片一区二区三区| 99视频在线观看一区三区| 欧美日韩一区二区三区四区| 精品免费日韩av| 亚洲女性喷水在线观看一区| 亚洲午夜激情网站| 国产在线一区二区| 93久久精品日日躁夜夜躁欧美| 欧美日韩美少妇| 久久综合色鬼综合色| 国产精品乱码一区二区三区软件| 亚洲www啪成人一区二区麻豆 | 欧美一区二区播放| 中文字幕av一区二区三区免费看| 亚洲国产精品一区二区久久恐怖片| 日产国产高清一区二区三区| 成人精品视频网站| 欧美精品自拍偷拍动漫精品| 国产午夜亚洲精品午夜鲁丝片 | 4438x亚洲最大成人网| 久久久精品中文字幕麻豆发布| 亚洲男女一区二区三区| 国产在线播精品第三| 欧美日韩在线播放三区| 中文字幕在线一区| 久久aⅴ国产欧美74aaa| 欧美日韩精品专区| 亚洲欧美在线另类| 激情综合色丁香一区二区| 在线欧美日韩国产| 亚洲国产精品ⅴa在线观看| 日韩激情一二三区| 欧亚洲嫩模精品一区三区| 久久免费视频一区| 久久aⅴ国产欧美74aaa| 欧美日韩高清一区二区三区| 亚洲丝袜自拍清纯另类| 国产精品69毛片高清亚洲| 91精品国产高清一区二区三区蜜臀 | 欧美aaa在线| 欧美亚洲一区二区三区四区| 国产精品成人网| 国产91精品在线观看| 精品免费一区二区三区| 七七婷婷婷婷精品国产| 欧美一区二区在线免费观看| 亚洲一区二区高清| 在线观看不卡视频| 亚洲女同一区二区| 91麻豆国产福利在线观看| 国产精品欧美一区喷水| 国产一区二区中文字幕| 欧美一区二区在线观看| 男男成人高潮片免费网站| 欧美绝品在线观看成人午夜影视 | 国产精品卡一卡二卡三| 国产在线精品视频| 亚洲成人一区在线| 欧美网站一区二区| 偷窥国产亚洲免费视频| 欧美精品v日韩精品v韩国精品v|