RGB24 转换为 YUV12 的算法

头文件:
RGB24 转换为 YUV12 的算法#ifndef __rgb_2yuv_h__
RGB24 转换为 YUV12 的算法#define __rgb_2yuv_h__
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法#ifdef __cplusplus
RGB24 转换为 YUV12 的算法extern "C" 
RGB24 转换为 YUV12 的算法{
RGB24 转换为 YUV12 的算法#endif 
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法int RGB2YUV (int x_dim, int y_dim, void* bmp, void* y_out, void* u_out, void* v_out, int flip);
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法#ifdef __cplusplus
RGB24 转换为 YUV12 的算法}

RGB24 转换为 YUV12 的算法#endif
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法#endif

实现文件:
RGB24 转换为 YUV12 的算法/**************************************************************************
RGB24 转换为 YUV12 的算法*                                                                        *
RGB24 转换为 YUV12 的算法* This code is developed by Adam Li.  This software is an                *
RGB24 转换为 YUV12 的算法* implementation of a part of one or more MPEG-4 Video tools as          *
RGB24 转换为 YUV12 的算法* specified in ISO/IEC 14496-2 standard.  Those intending to use this    *
RGB24 转换为 YUV12 的算法* software module in hardware or software products are advised that its  *
RGB24 转换为 YUV12 的算法* use may infringe existing patents or copyrights, and any such use      *
RGB24 转换为 YUV12 的算法* would be at such party's own risk.  The original developer of this     *
RGB24 转换为 YUV12 的算法* software module and his/her company, and subsequent editors and their  *
RGB24 转换为 YUV12 的算法* companies (including Project Mayo), will have no liability for use of  *
RGB24 转换为 YUV12 的算法* this software or modifications or derivatives thereof.                 *
RGB24 转换为 YUV12 的算法*                                                                        *
RGB24 转换为 YUV12 的算法* Project Mayo gives users of the Codec a license to this software       *
RGB24 转换为 YUV12 的算法* module or modifications thereof for use in hardware or software        *
RGB24 转换为 YUV12 的算法* products claiming conformance to the MPEG-4 Video Standard as          *
RGB24 转换为 YUV12 的算法* described in the Open DivX license.                                    *
RGB24 转换为 YUV12 的算法*                                                                        *
RGB24 转换为 YUV12 的算法* The complete Open DivX license can be found at                         *
RGB24 转换为 YUV12 的算法
http://www.projectmayo.com/opendivx/license.php .                      *
RGB24 转换为 YUV12 的算法*                                                                        *
RGB24 转换为 YUV12 的算法*************************************************************************
*/

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法/**************************************************************************
RGB24 转换为 YUV12 的算法*
RGB24 转换为 YUV12 的算法*  rgb2yuv.c, 24-bit RGB bitmap to YUV converter
RGB24 转换为 YUV12 的算法*
RGB24 转换为 YUV12 的算法*  Copyright (C) 2001  Project Mayo
RGB24 转换为 YUV12 的算法*
RGB24 转换为 YUV12 的算法*  Adam Li
RGB24 转换为 YUV12 的算法*
RGB24 转换为 YUV12 的算法*  DivX Advance Research Center <darc@projectmayo.com>
RGB24 转换为 YUV12 的算法*
RGB24 转换为 YUV12 的算法*************************************************************************
*/

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法/* This file contains RGB to YUV transformation functions.                */
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法#include "stdlib.h"
RGB24 转换为 YUV12 的算法#include "rgb2yuv.h"
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法static float RGBYUV02990[256], RGBYUV05870[256], RGBYUV01140[256];
RGB24 转换为 YUV12 的算法static float RGBYUV01684[256], RGBYUV03316[256];
RGB24 转换为 YUV12 的算法static float RGBYUV04187[256], RGBYUV00813[256];
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法void InitLookupTable();
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法/************************************************************************
RGB24 转换为 YUV12 的算法*
RGB24 转换为 YUV12 的算法*  int RGB2YUV (int x_dim, int y_dim, void *bmp, YUV *yuv)
RGB24 转换为 YUV12 的算法*
RGB24 转换为 YUV12 的算法*    Purpose :    It takes a 24-bit RGB bitmap and convert it into
RGB24 转换为 YUV12 的算法*                YUV (4:2:0) format
RGB24 转换为 YUV12 的算法*
RGB24 转换为 YUV12 的算法*  Input :        x_dim    the x dimension of the bitmap
RGB24 转换为 YUV12 的算法*                y_dim    the y dimension of the bitmap
RGB24 转换为 YUV12 的算法*                bmp        pointer to the buffer of the bitmap
RGB24 转换为 YUV12 的算法*                yuv        pointer to the YUV structure
RGB24 转换为 YUV12 的算法*
RGB24 转换为 YUV12 的算法*  Output :    0        OK
RGB24 转换为 YUV12 的算法*                1        wrong dimension
RGB24 转换为 YUV12 的算法*                2        memory allocation error
RGB24 转换为 YUV12 的算法*
RGB24 转换为 YUV12 的算法*    Side Effect :
RGB24 转换为 YUV12 的算法*                None
RGB24 转换为 YUV12 的算法*
RGB24 转换为 YUV12 的算法*    Date :        09/28/2000
RGB24 转换为 YUV12 的算法*
RGB24 转换为 YUV12 的算法*  Contacts:
RGB24 转换为 YUV12 的算法*
RGB24 转换为 YUV12 的算法*  Adam Li
RGB24 转换为 YUV12 的算法*
RGB24 转换为 YUV12 的算法*  DivX Advance Research Center <darc@projectmayo.com>
RGB24 转换为 YUV12 的算法*
RGB24 转换为 YUV12 的算法***********************************************************************
*/

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法int RGB2YUV (int x_dim, int y_dim, void *bmp, void *y_out, void *u_out, void *v_out, int flip)
RGB24 转换为 YUV12 的算法{
RGB24 转换为 YUV12 的算法    static int init_done = 0;
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    long i, j, size;
RGB24 转换为 YUV12 的算法    unsigned char *r, *g, *b;
RGB24 转换为 YUV12 的算法    unsigned char *y, *u, *v;
RGB24 转换为 YUV12 的算法    unsigned char *pu1, *pu2, *pv1, *pv2, *psu, *psv;
RGB24 转换为 YUV12 的算法    unsigned char *y_buffer, *u_buffer, *v_buffer;
RGB24 转换为 YUV12 的算法    unsigned char *sub_u_buf, *sub_v_buf;
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    if (init_done == 0)
RGB24 转换为 YUV12 的算法    {
RGB24 转换为 YUV12 的算法        InitLookupTable();
RGB24 转换为 YUV12 的算法        init_done = 1;
RGB24 转换为 YUV12 的算法    }

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    // check to see if x_dim and y_dim are divisible by 2
RGB24 转换为 YUV12 的算法
    if ((x_dim % 2) || (y_dim % 2)) return 1;
RGB24 转换为 YUV12 的算法    size = x_dim * y_dim;
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    // allocate memory
RGB24 转换为 YUV12 的算法
    y_buffer = (unsigned char *)y_out;
RGB24 转换为 YUV12 的算法    sub_u_buf = (unsigned char *)u_out;
RGB24 转换为 YUV12 的算法    sub_v_buf = (unsigned char *)v_out;
RGB24 转换为 YUV12 的算法    u_buffer = (unsigned char *)malloc(size * sizeof(unsigned char));
RGB24 转换为 YUV12 的算法    v_buffer = (unsigned char *)malloc(size * sizeof(unsigned char));
RGB24 转换为 YUV12 的算法    if (!(u_buffer && v_buffer))
RGB24 转换为 YUV12 的算法    {
RGB24 转换为 YUV12 的算法        if (u_buffer) free(u_buffer);
RGB24 转换为 YUV12 的算法        if (v_buffer) free(v_buffer);
RGB24 转换为 YUV12 的算法        return 2;
RGB24 转换为 YUV12 的算法    }

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    b = (unsigned char *)bmp;
RGB24 转换为 YUV12 的算法    y = y_buffer;
RGB24 转换为 YUV12 的算法    u = u_buffer;
RGB24 转换为 YUV12 的算法    v = v_buffer;
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    // convert RGB to YUV
RGB24 转换为 YUV12 的算法
    if (!flip) {
RGB24 转换为 YUV12 的算法        for (j = 0; j < y_dim; j ++)
RGB24 转换为 YUV12 的算法        {
RGB24 转换为 YUV12 的算法            y = y_buffer + (y_dim - j - 1) * x_dim;
RGB24 转换为 YUV12 的算法            u = u_buffer + (y_dim - j - 1) * x_dim;
RGB24 转换为 YUV12 的算法            v = v_buffer + (y_dim - j - 1) * x_dim;
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法            for (i = 0; i < x_dim; i ++) {
RGB24 转换为 YUV12 的算法                g = b + 1;
RGB24 转换为 YUV12 的算法                r = b + 2;
RGB24 转换为 YUV12 的算法                *y = (unsigned char)(  RGBYUV02990[*r] + RGBYUV05870[*g] + RGBYUV01140[*b]);
RGB24 转换为 YUV12 的算法                *u = (unsigned char)(- RGBYUV01684[*r] - RGBYUV03316[*g] + (*b)/2          + 128);
RGB24 转换为 YUV12 的算法                *v = (unsigned char)(  (*r)/2          - RGBYUV04187[*g] - RGBYUV00813[*b] + 128);
RGB24 转换为 YUV12 的算法                b += 3;
RGB24 转换为 YUV12 的算法                y ++;
RGB24 转换为 YUV12 的算法                u ++;
RGB24 转换为 YUV12 的算法                v ++;
RGB24 转换为 YUV12 的算法            }

RGB24 转换为 YUV12 的算法        }

RGB24 转换为 YUV12 的算法    }
 else {
RGB24 转换为 YUV12 的算法        for (i = 0; i < size; i++)
RGB24 转换为 YUV12 的算法        {
RGB24 转换为 YUV12 的算法            g = b + 1;
RGB24 转换为 YUV12 的算法            r = b + 2;
RGB24 转换为 YUV12 的算法            *y = (unsigned char)(  RGBYUV02990[*r] + RGBYUV05870[*g] + RGBYUV01140[*b]);
RGB24 转换为 YUV12 的算法            *u = (unsigned char)(- RGBYUV01684[*r] - RGBYUV03316[*g] + (*b)/2          + 128);
RGB24 转换为 YUV12 的算法            *v = (unsigned char)(  (*r)/2          - RGBYUV04187[*g] - RGBYUV00813[*b] + 128);
RGB24 转换为 YUV12 的算法            b += 3;
RGB24 转换为 YUV12 的算法            y ++;
RGB24 转换为 YUV12 的算法            u ++;
RGB24 转换为 YUV12 的算法            v ++;
RGB24 转换为 YUV12 的算法        }

RGB24 转换为 YUV12 的算法    }

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    // subsample UV
RGB24 转换为 YUV12 的算法
    for (j = 0; j < y_dim/2; j ++)
RGB24 转换为 YUV12 的算法    {
RGB24 转换为 YUV12 的算法        psu = sub_u_buf + j * x_dim / 2;
RGB24 转换为 YUV12 的算法        psv = sub_v_buf + j * x_dim / 2;
RGB24 转换为 YUV12 的算法        pu1 = u_buffer + 2 * j * x_dim;
RGB24 转换为 YUV12 的算法        pu2 = u_buffer + (2 * j + 1) * x_dim;
RGB24 转换为 YUV12 的算法        pv1 = v_buffer + 2 * j * x_dim;
RGB24 转换为 YUV12 的算法        pv2 = v_buffer + (2 * j + 1) * x_dim;
RGB24 转换为 YUV12 的算法        for (i = 0; i < x_dim/2; i ++)
RGB24 转换为 YUV12 的算法        {
RGB24 转换为 YUV12 的算法            *psu = (*pu1 + *(pu1+1) + *pu2 + *(pu2+1)) / 4;
RGB24 转换为 YUV12 的算法            *psv = (*pv1 + *(pv1+1) + *pv2 + *(pv2+1)) / 4;
RGB24 转换为 YUV12 的算法            psu ++;
RGB24 转换为 YUV12 的算法            psv ++;
RGB24 转换为 YUV12 的算法            pu1 += 2;
RGB24 转换为 YUV12 的算法            pu2 += 2;
RGB24 转换为 YUV12 的算法            pv1 += 2;
RGB24 转换为 YUV12 的算法            pv2 += 2;
RGB24 转换为 YUV12 的算法        }

RGB24 转换为 YUV12 的算法    }

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    free(u_buffer);
RGB24 转换为 YUV12 的算法    free(v_buffer);
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    return 0;
RGB24 转换为 YUV12 的算法}

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法void InitLookupTable()
RGB24 转换为 YUV12 的算法{
RGB24 转换为 YUV12 的算法    int i;
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    for (i = 0; i < 256; i++) RGBYUV02990[i] = (float)0.2990 * i;
RGB24 转换为 YUV12 的算法    for (i = 0; i < 256; i++) RGBYUV05870[i] = (float)0.5870 * i;
RGB24 转换为 YUV12 的算法    for (i = 0; i < 256; i++) RGBYUV01140[i] = (float)0.1140 * i;
RGB24 转换为 YUV12 的算法    for (i = 0; i < 256; i++) RGBYUV01684[i] = (float)0.1684 * i;
RGB24 转换为 YUV12 的算法    for (i = 0; i < 256; i++) RGBYUV03316[i] = (float)0.3316 * i;
RGB24 转换为 YUV12 的算法    for (i = 0; i < 256; i++) RGBYUV04187[i] = (float)0.4187 * i;
RGB24 转换为 YUV12 的算法    for (i = 0; i < 256; i++) RGBYUV00813[i] = (float)0.0813 * i;
RGB24 转换为 YUV12 的算法}

RGB24 转换为 YUV12 的算法

测试程序:
RGB24 转换为 YUV12 的算法/*
RGB24 转换为 YUV12 的算法 * The contents of this file are subject to the Mozilla Public
RGB24 转换为 YUV12 的算法 * License Version 1.1 (the "License"); you may not use this file
RGB24 转换为 YUV12 的算法 * except in compliance with the License. You may obtain a copy of
RGB24 转换为 YUV12 的算法 * the License at 
http://www.mozilla.org/MPL/
RGB24 转换为 YUV12 的算法 * 
RGB24 转换为 YUV12 的算法 * Software distributed under the License is distributed on an "AS
RGB24 转换为 YUV12 的算法 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
RGB24 转换为 YUV12 的算法 * implied. See the License for the specific language governing
RGB24 转换为 YUV12 的算法 * rights and limitations under the License.
RGB24 转换为 YUV12 的算法 * 
RGB24 转换为 YUV12 的算法 * The Original Code is MPEG4IP.
RGB24 转换为 YUV12 的算法 * 
RGB24 转换为 YUV12 的算法 * The Initial Developer of the Original Code is Cisco Systems Inc.
RGB24 转换为 YUV12 的算法 * Portions created by Cisco Systems Inc. are
RGB24 转换为 YUV12 的算法 * Copyright (C) Cisco Systems Inc. 2000, 2001.  All Rights Reserved.
RGB24 转换为 YUV12 的算法 * 
RGB24 转换为 YUV12 的算法 * Contributor(s): 
RGB24 转换为 YUV12 的算法 *        Dave Mackie        dmackie@cisco.com
RGB24 转换为 YUV12 的算法 
*/

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法#include <mpeg4ip.h>
RGB24 转换为 YUV12 的算法#include <mpeg4ip_getopt.h>
RGB24 转换为 YUV12 的算法#include "rgb2yuv.h"
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法/* globals */
RGB24 转换为 YUV12 的算法char* progName;
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法/*
RGB24 转换为 YUV12 的算法 * rgb2yuv
RGB24 转换为 YUV12 的算法 * required arg1 should be the input RAW RGB24 file
RGB24 转换为 YUV12 的算法 * required arg2 should be the output RAW YUV12 file
RGB24 转换为 YUV12 的算法 
*/
 
RGB24 转换为 YUV12 的算法static const char *usage = 
RGB24 转换为 YUV12 的算法"\t--flip           - flip image\n"
RGB24 转换为 YUV12 的算法"\t--height <value> - specify height\n"
RGB24 转换为 YUV12 的算法"\t--width <value>  - specify width\n"
RGB24 转换为 YUV12 的算法"\t--version        - display version\n";
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法int main(int argc, char** argv)
RGB24 转换为 YUV12 的算法{
RGB24 转换为 YUV12 的算法    /* variables controlable from command line */
RGB24 转换为 YUV12 的算法    u_int frameWidth = 320;            /* --width=<uint> */
RGB24 转换为 YUV12 的算法    u_int frameHeight = 240;        /* --height=<uint> */
RGB24 转换为 YUV12 的算法    bool flip = FALSE;                /* --flip */
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    /* internal variables */
RGB24 转换为 YUV12 的算法    char* rgbFileName = NULL;
RGB24 转换为 YUV12 的算法    char* yuvFileName = NULL;
RGB24 转换为 YUV12 的算法    FILE* rgbFile = NULL;
RGB24 转换为 YUV12 的算法    FILE* yuvFile = NULL;
RGB24 转换为 YUV12 的算法    u_int8_t* rgbBuf = NULL;
RGB24 转换为 YUV12 的算法    u_int8_t* yBuf = NULL;
RGB24 转换为 YUV12 的算法    u_int8_t* uBuf = NULL;
RGB24 转换为 YUV12 的算法    u_int8_t* vBuf = NULL;
RGB24 转换为 YUV12 的算法    u_int32_t videoFramesWritten = 0;
RGB24 转换为 YUV12 的算法    bool gotheight, gotwidth;
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    gotheight = gotwidth = FALSE;
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    /* begin process command line */
RGB24 转换为 YUV12 的算法    progName = argv[0];
RGB24 转换为 YUV12 的算法    while (1) {
RGB24 转换为 YUV12 的算法        int c = -1;
RGB24 转换为 YUV12 的算法        int option_index = 0;
RGB24 转换为 YUV12 的算法        static struct option long_options[] = {
RGB24 转换为 YUV12 的算法            { "flip", 0, 0, 'f' },
RGB24 转换为 YUV12 的算法            { "height", 1, 0, 'h' },
RGB24 转换为 YUV12 的算法            { "width", 1, 0, 'w' },
RGB24 转换为 YUV12 的算法            { "version", 0, 0, 'V' },
RGB24 转换为 YUV12 的算法            { NULL, 0, 0, 0 }
RGB24 转换为 YUV12 的算法        }
;
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法        c = getopt_long_only(argc, argv, "fh:w:V",
RGB24 转换为 YUV12 的算法            long_options, &option_index);
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法        if (c == -1)
RGB24 转换为 YUV12 的算法            break;
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法        switch (c) {
RGB24 转换为 YUV12 的算法        case 'f': {
RGB24 转换为 YUV12 的算法            flip = TRUE;
RGB24 转换为 YUV12 的算法            break;
RGB24 转换为 YUV12 的算法        }

RGB24 转换为 YUV12 的算法        case 'h': {
RGB24 转换为 YUV12 的算法            /* --height <pixels> */
RGB24 转换为 YUV12 的算法            u_int i;
RGB24 转换为 YUV12 的算法            gotheight = TRUE;
RGB24 转换为 YUV12 的算法            if (sscanf(optarg, "%u", &i) < 1) {
RGB24 转换为 YUV12 的算法                fprintf(stderr, 
RGB24 转换为 YUV12 的算法                    "%s: bad height specified: %s\n",
RGB24 转换为 YUV12 的算法                     progName, optarg);
RGB24 转换为 YUV12 的算法            }
 else if (i & 1) {
RGB24 转换为 YUV12 的算法                fprintf(stderr, 
RGB24 转换为 YUV12 的算法                    "%s: bad height specified, must be multiple of 2: %s\n",
RGB24 转换为 YUV12 的算法                     progName, optarg);
RGB24 转换为 YUV12 的算法            }
 else {
RGB24 转换为 YUV12 的算法                /* currently no range checking */
RGB24 转换为 YUV12 的算法                frameHeight = i;
RGB24 转换为 YUV12 的算法            }

RGB24 转换为 YUV12 的算法            break;
RGB24 转换为 YUV12 的算法        }

RGB24 转换为 YUV12 的算法        case 'w': {
RGB24 转换为 YUV12 的算法            /* -width <pixels> */
RGB24 转换为 YUV12 的算法            u_int i;
RGB24 转换为 YUV12 的算法            gotwidth = TRUE;
RGB24 转换为 YUV12 的算法            if (sscanf(optarg, "%u", &i) < 1) {
RGB24 转换为 YUV12 的算法                fprintf(stderr, 
RGB24 转换为 YUV12 的算法                    "%s: bad width specified: %s\n",
RGB24 转换为 YUV12 的算法                     progName, optarg);
RGB24 转换为 YUV12 的算法            }
 else if (i & 1) {
RGB24 转换为 YUV12 的算法                fprintf(stderr, 
RGB24 转换为 YUV12 的算法                    "%s: bad width specified, must be multiple of 2: %s\n",
RGB24 转换为 YUV12 的算法                     progName, optarg);
RGB24 转换为 YUV12 的算法            }
 else {
RGB24 转换为 YUV12 的算法                /* currently no range checking */
RGB24 转换为 YUV12 的算法                frameWidth = i;
RGB24 转换为 YUV12 的算法            }

RGB24 转换为 YUV12 的算法            break;
RGB24 转换为 YUV12 的算法        }

RGB24 转换为 YUV12 的算法        case '?':
RGB24 转换为 YUV12 的算法          fprintf(stderr, 
RGB24 转换为 YUV12 的算法              "usage: %s <rgb-file> <yuv-file>\n%s",
RGB24 转换为 YUV12 的算法              progName, usage);
RGB24 转换为 YUV12 的算法          return (0);
RGB24 转换为 YUV12 的算法        case 'V':
RGB24 转换为 YUV12 的算法          fprintf(stderr, "%s - %s version %s\n",
RGB24 转换为 YUV12 的算法              progName, MPEG4IP_PACKAGE, MPEG4IP_VERSION);
RGB24 转换为 YUV12 的算法          return (0);
RGB24 转换为 YUV12 的算法        default:
RGB24 转换为 YUV12 的算法            fprintf(stderr, "%s: unknown option specified, ignoring: %c\n", 
RGB24 转换为 YUV12 的算法                progName, c);
RGB24 转换为 YUV12 的算法        }

RGB24 转换为 YUV12 的算法    }

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    /* check that we have at least two non-option arguments */
RGB24 转换为 YUV12 的算法    if ((argc - optind) < 2) {
RGB24 转换为 YUV12 的算法        fprintf(stderr, 
RGB24 转换为 YUV12 的算法            "usage: %s <rgb-file> <yuv-file>\n%s",
RGB24 转换为 YUV12 的算法            progName, usage);
RGB24 转换为 YUV12 的算法        exit(1);
RGB24 转换为 YUV12 的算法    }

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    if (gotheight == FALSE || gotwidth == FALSE) {
RGB24 转换为 YUV12 的算法      fprintf(stderr, "%s - you haven't specified height or width - going with %dx%d", 
RGB24 转换为 YUV12 的算法          progName, frameWidth, frameHeight);
RGB24 转换为 YUV12 的算法    }

RGB24 转换为 YUV12 的算法    /* point to the specified file names */
RGB24 转换为 YUV12 的算法    rgbFileName = argv[optind++];
RGB24 转换为 YUV12 的算法    yuvFileName = argv[optind++];
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    /* warn about extraneous non-option arguments */
RGB24 转换为 YUV12 的算法    if (optind < argc) {
RGB24 转换为 YUV12 的算法        fprintf(stderr, "%s: unknown options specified, ignoring: ");
RGB24 转换为 YUV12 的算法        while (optind < argc) {
RGB24 转换为 YUV12 的算法            fprintf(stderr, "%s ", argv[optind++]);
RGB24 转换为 YUV12 的算法        }

RGB24 转换为 YUV12 的算法        fprintf(stderr, "\n");
RGB24 转换为 YUV12 的算法    }

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    /* end processing of command line */
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    /* open the RGB file */
RGB24 转换为 YUV12 的算法    rgbFile = fopen(rgbFileName, "rb");
RGB24 转换为 YUV12 的算法    if (rgbFile == NULL) {
RGB24 转换为 YUV12 的算法        fprintf(stderr, 
RGB24 转换为 YUV12 的算法            "%s: error %s: %s\n",
RGB24 转换为 YUV12 的算法            progName, rgbFileName, strerror(errno));
RGB24 转换为 YUV12 的算法        exit(4);
RGB24 转换为 YUV12 的算法    }

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    /* open the RAW file */
RGB24 转换为 YUV12 的算法    yuvFile = fopen(yuvFileName, "wb");
RGB24 转换为 YUV12 的算法    if (yuvFile == NULL) {
RGB24 转换为 YUV12 的算法        fprintf(stderr,
RGB24 转换为 YUV12 的算法            "%s: error opening %s: %s\n",
RGB24 转换为 YUV12 的算法            progName, yuvFileName, strerror(errno));
RGB24 转换为 YUV12 的算法        exit(5);
RGB24 转换为 YUV12 的算法    }

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    /* get an input buffer for a frame */
RGB24 转换为 YUV12 的算法    rgbBuf = (u_int8_t*)malloc(frameWidth * frameHeight * 3);
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    /* get the output buffers for a frame */
RGB24 转换为 YUV12 的算法    yBuf = (u_int8_t*)malloc(frameWidth * frameHeight);
RGB24 转换为 YUV12 的算法    uBuf = (u_int8_t*)malloc((frameWidth * frameHeight) / 4);
RGB24 转换为 YUV12 的算法    vBuf = (u_int8_t*)malloc((frameWidth * frameHeight) / 4);
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    if (rgbBuf == NULL || yBuf == NULL || uBuf == NULL || vBuf == NULL) {
RGB24 转换为 YUV12 的算法        fprintf(stderr,
RGB24 转换为 YUV12 的算法            "%s: error allocating memory: %s\n",
RGB24 转换为 YUV12 的算法            progName, strerror(errno));
RGB24 转换为 YUV12 的算法        exit(6);
RGB24 转换为 YUV12 的算法    }

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    while (fread(rgbBuf, 1, frameWidth * frameHeight * 3, rgbFile)) {
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法        RGB2YUV(frameWidth, frameHeight, rgbBuf, yBuf, uBuf, vBuf, flip);
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法        fwrite(yBuf, 1, frameWidth * frameHeight, yuvFile);
RGB24 转换为 YUV12 的算法        fwrite(uBuf, 1, (frameWidth * frameHeight) / 4, yuvFile);
RGB24 转换为 YUV12 的算法        fwrite(vBuf, 1, (frameWidth * frameHeight) / 4, yuvFile);
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法        videoFramesWritten++;
RGB24 转换为 YUV12 的算法    }

RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    printf("%u %ux%u video frames written\n", 
RGB24 转换为 YUV12 的算法        videoFramesWritten, frameWidth, frameHeight);
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    /* cleanup */
RGB24 转换为 YUV12 的算法    fclose(rgbFile);
RGB24 转换为 YUV12 的算法    fclose(yuvFile);
RGB24 转换为 YUV12 的算法
RGB24 转换为 YUV12 的算法    return(0);
RGB24 转换为 YUV12 的算法}

RGB24 转换为 YUV12 的算法
上一篇:eBPF开发指南


下一篇:python challenge第1关--NoteBook上的“乱码”