⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imgconvert.c

📁 Trolltech公司发布的图形界面操作系统。可在qt-embedded-2.3.10平台上编译为嵌入式图形界面操作系统。
💻 C
📖 第 1 页 / 共 4 页
字号:
        pf = &pix_fmt_info[pix_fmt];    switch(pf->pixel_type) {    case FF_PIXEL_PACKED:        switch(pix_fmt) {        case PIX_FMT_YUV422:        case PIX_FMT_RGB565:        case PIX_FMT_RGB555:            bits = 16;            break;        default:            bits = pf->depth * pf->nb_channels;            break;        }        bwidth = (width * bits + 7) >> 3;        img_copy_plane(dst->data[0], dst->linesize[0],                       src->data[0], src->linesize[0],                       bwidth, height);        break;    case FF_PIXEL_PLANAR:        for(i = 0; i < pf->nb_channels; i++) {            int w, h;            w = width;            h = height;            if (i == 1 || i == 2) {                w >>= pf->x_chroma_shift;                h >>= pf->y_chroma_shift;            }            bwidth = (w * pf->depth + 7) >> 3;            img_copy_plane(dst->data[i], dst->linesize[i],                           src->data[i], src->linesize[i],                           bwidth, h);        }        break;    case FF_PIXEL_PALETTE:        img_copy_plane(dst->data[0], dst->linesize[0],                       src->data[0], src->linesize[0],                       width, height);        /* copy the palette */        img_copy_plane(dst->data[1], dst->linesize[1],                       src->data[1], src->linesize[1],                       4, 256);        break;    }}/* XXX: totally non optimized */static void yuv422_to_yuv420p(AVPicture *dst, const AVPicture *src,                              int width, int height){    const uint8_t *p, *p1;    uint8_t *lum, *cr, *cb, *lum1, *cr1, *cb1;    int w;     p1 = src->data[0];    lum1 = dst->data[0];    cb1 = dst->data[1];    cr1 = dst->data[2];    for(;height >= 1; height -= 2) {        p = p1;        lum = lum1;        cb = cb1;        cr = cr1;        for(w = width; w >= 2; w -= 2) {            lum[0] = p[0];            cb[0] = p[1];            lum[1] = p[2];            cr[0] = p[3];            p += 4;            lum += 2;            cb++;            cr++;        }        if (w) {            lum[0] = p[0];            cb[0] = p[1];            cr[0] = p[3];            cb++;            cr++;        }        p1 += src->linesize[0];        lum1 += dst->linesize[0];        if (height>1) {            p = p1;            lum = lum1;            for(w = width; w >= 2; w -= 2) {                lum[0] = p[0];                lum[1] = p[2];                p += 4;                lum += 2;            }            if (w) {                lum[0] = p[0];            }            p1 += src->linesize[0];            lum1 += dst->linesize[0];        }        cb1 += dst->linesize[1];        cr1 += dst->linesize[2];    }}static void yuv422_to_yuv422p(AVPicture *dst, const AVPicture *src,                              int width, int height){    const uint8_t *p, *p1;    uint8_t *lum, *cr, *cb, *lum1, *cr1, *cb1;    int w;    p1 = src->data[0];    lum1 = dst->data[0];    cb1 = dst->data[1];    cr1 = dst->data[2];    for(;height > 0; height--) {        p = p1;        lum = lum1;        cb = cb1;        cr = cr1;        for(w = width; w >= 2; w -= 2) {            lum[0] = p[0];            cb[0] = p[1];            lum[1] = p[2];            cr[0] = p[3];            p += 4;            lum += 2;            cb++;            cr++;        }        p1 += src->linesize[0];        lum1 += dst->linesize[0];        cb1 += dst->linesize[1];        cr1 += dst->linesize[2];    }}static void yuv422p_to_yuv422(AVPicture *dst, const AVPicture *src,                              int width, int height){    uint8_t *p, *p1;    const uint8_t *lum, *cr, *cb, *lum1, *cr1, *cb1;    int w;    p1 = dst->data[0];    lum1 = src->data[0];    cb1 = src->data[1];    cr1 = src->data[2];    for(;height > 0; height--) {        p = p1;        lum = lum1;        cb = cb1;        cr = cr1;        for(w = width; w >= 2; w -= 2) {            p[0] = lum[0];            p[1] = cb[0];            p[2] = lum[1];            p[3] = cr[0];            p += 4;            lum += 2;            cb++;            cr++;        }        p1 += dst->linesize[0];        lum1 += src->linesize[0];        cb1 += src->linesize[1];        cr1 += src->linesize[2];    }}#define SCALEBITS 10#define ONE_HALF  (1 << (SCALEBITS - 1))#define FIX(x)	  ((int) ((x) * (1<<SCALEBITS) + 0.5))#define YUV_TO_RGB1_CCIR(cb1, cr1)\{\    cb = (cb1) - 128;\    cr = (cr1) - 128;\    r_add = FIX(1.40200*255.0/224.0) * cr + ONE_HALF;\    g_add = - FIX(0.34414*255.0/224.0) * cb - FIX(0.71414*255.0/224.0) * cr + \            ONE_HALF;\    b_add = FIX(1.77200*255.0/224.0) * cb + ONE_HALF;\}#define YUV_TO_RGB2_CCIR(r, g, b, y1)\{\    y = ((y1) - 16) * FIX(255.0/219.0);\    r = cm[(y + r_add) >> SCALEBITS];\    g = cm[(y + g_add) >> SCALEBITS];\    b = cm[(y + b_add) >> SCALEBITS];\}#define YUV_TO_RGB1(cb1, cr1)\{\    cb = (cb1) - 128;\    cr = (cr1) - 128;\    r_add = FIX(1.40200) * cr + ONE_HALF;\    g_add = - FIX(0.34414) * cb - FIX(0.71414) * cr + ONE_HALF;\    b_add = FIX(1.77200) * cb + ONE_HALF;\}#define YUV_TO_RGB2(r, g, b, y1)\{\    y = (y1) << SCALEBITS;\    r = cm[(y + r_add) >> SCALEBITS];\    g = cm[(y + g_add) >> SCALEBITS];\    b = cm[(y + b_add) >> SCALEBITS];\}#define Y_CCIR_TO_JPEG(y)\ cm[((y) * FIX(255.0/219.0) + (ONE_HALF - 16 * FIX(255.0/219.0))) >> SCALEBITS]#define Y_JPEG_TO_CCIR(y)\ (((y) * FIX(219.0/255.0) + (ONE_HALF + (16 << SCALEBITS))) >> SCALEBITS)#define C_CCIR_TO_JPEG(y)\ cm[(((y) - 128) * FIX(127.0/112.0) + (ONE_HALF + (128 << SCALEBITS))) >> SCALEBITS]/* NOTE: the clamp is really necessary! */static inline int C_JPEG_TO_CCIR(int y) {    y = (((y - 128) * FIX(112.0/127.0) + (ONE_HALF + (128 << SCALEBITS))) >> SCALEBITS);    if (y < 16)	y = 16;    return y;}#define RGB_TO_Y(r, g, b) \((FIX(0.29900) * (r) + FIX(0.58700) * (g) + \  FIX(0.11400) * (b) + ONE_HALF) >> SCALEBITS)#define RGB_TO_U(r1, g1, b1, shift)\(((- FIX(0.16874) * r1 - FIX(0.33126) * g1 +         \     FIX(0.50000) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128)#define RGB_TO_V(r1, g1, b1, shift)\(((FIX(0.50000) * r1 - FIX(0.41869) * g1 -           \   FIX(0.08131) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128)#define RGB_TO_Y_CCIR(r, g, b) \((FIX(0.29900*219.0/255.0) * (r) + FIX(0.58700*219.0/255.0) * (g) + \  FIX(0.11400*219.0/255.0) * (b) + (ONE_HALF + (16 << SCALEBITS))) >> SCALEBITS)#define RGB_TO_U_CCIR(r1, g1, b1, shift)\(((- FIX(0.16874*224.0/255.0) * r1 - FIX(0.33126*224.0/255.0) * g1 +         \     FIX(0.50000*224.0/255.0) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128)#define RGB_TO_V_CCIR(r1, g1, b1, shift)\(((FIX(0.50000*224.0/255.0) * r1 - FIX(0.41869*224.0/255.0) * g1 -           \   FIX(0.08131*224.0/255.0) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128)static uint8_t y_ccir_to_jpeg[256];static uint8_t y_jpeg_to_ccir[256];static uint8_t c_ccir_to_jpeg[256];static uint8_t c_jpeg_to_ccir[256];/* init various conversion tables */static void img_convert_init(void){    int i;    uint8_t *cm = cropTbl + MAX_NEG_CROP;    for(i = 0;i < 256; i++) {        y_ccir_to_jpeg[i] = Y_CCIR_TO_JPEG(i);        y_jpeg_to_ccir[i] = Y_JPEG_TO_CCIR(i);        c_ccir_to_jpeg[i] = C_CCIR_TO_JPEG(i);        c_jpeg_to_ccir[i] = C_JPEG_TO_CCIR(i);    }}/* apply to each pixel the given table */static void img_apply_table(uint8_t *dst, int dst_wrap,                             const uint8_t *src, int src_wrap,                            int width, int height, const uint8_t *table1){    int n;    const uint8_t *s;    uint8_t *d;    const uint8_t *table;    table = table1;    for(;height > 0; height--) {        s = src;        d = dst;        n = width;        while (n >= 4) {            d[0] = table[s[0]];            d[1] = table[s[1]];            d[2] = table[s[2]];            d[3] = table[s[3]];            d += 4;            s += 4;            n -= 4;        }        while (n > 0) {            d[0] = table[s[0]];            d++;            s++;            n--;        }        dst += dst_wrap;        src += src_wrap;    }}/* XXX: use generic filter ? *//* XXX: in most cases, the sampling position is incorrect *//* 4x1 -> 1x1 */static void shrink41(uint8_t *dst, int dst_wrap,                      const uint8_t *src, int src_wrap,                     int width, int height){    int w;    const uint8_t *s;    uint8_t *d;    for(;height > 0; height--) {        s = src;        d = dst;        for(w = width;w > 0; w--) {            d[0] = (s[0] + s[1] + s[2] + s[3] + 2) >> 2;            s += 4;            d++;        }        src += src_wrap;        dst += dst_wrap;    }}/* 2x1 -> 1x1 */static void shrink21(uint8_t *dst, int dst_wrap,                      const uint8_t *src, int src_wrap,                     int width, int height){    int w;    const uint8_t *s;    uint8_t *d;    for(;height > 0; height--) {        s = src;        d = dst;        for(w = width;w > 0; w--) {            d[0] = (s[0] + s[1]) >> 1;            s += 2;            d++;        }        src += src_wrap;        dst += dst_wrap;    }}/* 1x2 -> 1x1 */static void shrink12(uint8_t *dst, int dst_wrap,                      const uint8_t *src, int src_wrap,                     int width, int height){    int w;    uint8_t *d;    const uint8_t *s1, *s2;    for(;height > 0; height--) {        s1 = src;        s2 = s1 + src_wrap;        d = dst;        for(w = width;w >= 4; w-=4) {            d[0] = (s1[0] + s2[0]) >> 1;            d[1] = (s1[1] + s2[1]) >> 1;            d[2] = (s1[2] + s2[2]) >> 1;            d[3] = (s1[3] + s2[3]) >> 1;            s1 += 4;            s2 += 4;            d += 4;        }        for(;w > 0; w--) {            d[0] = (s1[0] + s2[0]) >> 1;            s1++;            s2++;            d++;        }        src += 2 * src_wrap;        dst += dst_wrap;    }}/* 2x2 -> 1x1 */static void shrink22(uint8_t *dst, int dst_wrap,                      const uint8_t *src, int src_wrap,                     int width, int height){    int w;    const uint8_t *s1, *s2;    uint8_t *d;    for(;height > 0; height--) {        s1 = src;        s2 = s1 + src_wrap;        d = dst;        for(w = width;w >= 4; w-=4) {            d[0] = (s1[0] + s1[1] + s2[0] + s2[1] + 2) >> 2;            d[1] = (s1[2] + s1[3] + s2[2] + s2[3] + 2) >> 2;            d[2] = (s1[4] + s1[5] + s2[4] + s2[5] + 2) >> 2;            d[3] = (s1[6] + s1[7] + s2[6] + s2[7] + 2) >> 2;            s1 += 8;            s2 += 8;            d += 4;        }        for(;w > 0; w--) {            d[0] = (s1[0] + s1[1] + s2[0] + s2[1] + 2) >> 2;            s1 += 2;            s2 += 2;            d++;        }        src += 2 * src_wrap;        dst += dst_wrap;    }}/* 4x4 -> 1x1 */static void shrink44(uint8_t *dst, int dst_wrap,                      const uint8_t *src, int src_wrap,                     int width, int height){    int w;    const uint8_t *s1, *s2, *s3, *s4;    uint8_t *d;    for(;height > 0; height--) {        s1 = src;        s2 = s1 + src_wrap;        s3 = s2 + src_wrap;        s4 = s3 + src_wrap;        d = dst;        for(w = width;w > 0; w--) {            d[0] = (s1[0] + s1[1] + s1[2] + s1[3] +                    s2[0] + s2[1] + s2[2] + s2[3] +                    s3[0] + s3[1] + s3[2] + s3[3] +                    s4[0] + s4[1] + s4[2] + s4[3] + 8) >> 4;            s1 += 4;            s2 += 4;            s3 += 4;            s4 += 4;            d++;        }        src += 4 * src_wrap;        dst += dst_wrap;    }}static void grow21_line(uint8_t *dst, const uint8_t *src,                        int width){    int w;    const uint8_t *s1;    uint8_t *d;    s1 = src;    d = dst;    for(w = width;w >= 4; w-=4) {        d[1] = d[0] = s1[0];        d[3] = d[2] = s1[1];        s1 += 2;        d += 4;    }    for(;w >= 2; w -= 2) {        d[1] = d[0] = s1[0];        s1 ++;        d += 2;    }    /* only needed if width is not a multiple of two */    /* XXX: veryfy that */    if (w) {        d[0] = s1[0];    }}static void grow41_line(uint8_t *dst, const uint8_t *src,                        int width){    int w, v;    const uint8_t *s1;    uint8_t *d;    s1 = src;    d = dst;    for(w = width;w >= 4; w-=4) {        v = s1[0];        d[0] = v;        d[1] = v;        d[2] = v;        d[3] = v;        s1 ++;        d += 4;    }}/* 1x1 -> 2x1 */static void grow21(uint8_t *dst, int dst_wrap,                   const uint8_t *src, int src_wrap,                   int width, int height){    for(;height > 0; height--) {        grow21_line(dst, src, width);        src += src_wrap;        dst += dst_wrap;    }}/* 1x1 -> 2x2 */static void grow22(uint8_t *dst, int dst_wrap,                   const uint8_t *src, int src_wrap,                   int width, int height){    for(;height > 0; height--) {        grow21_line(dst, src, width);        if (height%2)            src += src_wrap;        dst += dst_wrap;    }}/* 1x1 -> 4x1 */static void grow41(uint8_t *dst, int dst_wrap,                   const uint8_t *src, int src_wrap,                   int width, int height){    for(;height > 0; height--) {        grow41_line(dst, src, width);        src += src_wrap;        dst += dst_wrap;    }}/* 1x1 -> 4x4 */static void grow44(uint8_t *dst, int dst_wrap,                   const uint8_t *src, int src_wrap,                   int width, int height){    for(;height > 0; height--) {        grow41_line(dst, src, width);        if ((height & 3) == 1)            src += src_wrap;        dst += dst_wrap;    }}/* 1x2 -> 2x1 */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -