📄 img_yc_demux_be16_c.c
字号:
/* ======================================================================== */
/* TEXAS INSTRUMENTS, INC. */
/* */
/* IMGLIB DSP Image/Video Processing Library */
/* */
/* This library contains proprietary intellectual property of Texas */
/* Instruments, Inc. The library and its source code are protected by */
/* various copyrights, and portions may also be protected by patents or */
/* other legal protections. */
/* */
/* This software is licensed for use with Texas Instruments TMS320 */
/* family DSPs. This license was provided to you prior to installing */
/* the software. You may review this license by consulting the file */
/* TI_license.PDF which accompanies the files in this library. */
/* ------------------------------------------------------------------------ */
/* Copyright (C) 2002 Texas Instruments, Incorporated. */
/* All Rights Reserved. */
/* ======================================================================== */
/* ======================================================================== */
/* TEXAS INSTRUMENTS, INC. */
/* */
/* NAME */
/* IMG_yc_demux_be16 -- De-interleave a 4:2:2 BIG ENDIAN video stream */
/* into three separate LITTLE ENDIAN 16-bit planes */
/* */
/* REVISION DATE */
/* 28-Sep-2001 */
/* */
/* USAGE */
/* This function is C callable, and is called as follows: */
/* */
/* void IMG_yc_demux_be16 */
/* ( */
/* int n, // Number of luma pixels // */
/* const unsigned char * yc, // Interleaved luma/chroma // */
/* short *restrict y, // Luma plane (16-bit) // */
/* short *restrict cr, // Cr chroma plane (16-bit) // */
/* short *restrict cb // Cb chroma plane (16-bit) // */
/* ); */
/* */
/* The input array 'yc' is expected to be an interleaved 4:2:2 */
/* video stream. The input is expected in BIG ENDIAN byte order */
/* within each 4-byte word. This is consistent with reading the */
/* video stream from a word-oriented BIG ENDIAN device while the */
/* C6000 device is in a LITTLE ENDIAN configuration. */
/* */
/* In other words, the expected pixel order is: */
/* */
/* Word 0 Word 1 Word 2 */
/* +---------------+---------------+---------------+-- */
/* Byte# | 0 1 2 3 | 4 5 6 7 | 8 9 10 11 |... */
/* |cb0 y1 cr0 y0 |cb2 y3 cr2 y2 |cb4 y5 cr4 y4 |... */
/* +---------------+---------------+---------------+-- */
/* */
/* The output arrays 'y', 'cr', and 'cb' are expected to not */
/* overlap. The de-interleaved pixels are written as half-words */
/* in LITTLE ENDIAN order. */
/* */
/* DESCRIPTION */
/* This function reads the byte-oriented pixel data, zero-extends */
/* it, and then writes it to the appropriate result array. Both */
/* the luma and chroma values are expected to be unsigned. */
/* */
/* The data is expected to be in an order consistent with reading */
/* byte oriented data from a word-oriented peripheral that is */
/* operating in BIG ENDIAN mode, while the CPU is in LITTLE ENDIAN */
/* mode. This results in a pixel ordering which is not */
/* immediately obvious. This function correctly reorders the */
/* pixel values so that further processing may proceed in LITTLE */
/* ENDIAN mode. */
/* */
/* ------------------------------------------------------------------------ */
/* Copyright (c) 2002 Texas Instruments, Incorporated. */
/* All Rights Reserved. */
/* ======================================================================== */
void IMG_yc_demux_be16_c
(
int n, /* Number of luma pixels */
const unsigned char *yc, /* Interleaved luma/chroma */
short *restrict y, /* Luma plane (16-bit) */
short *restrict cr, /* Cr chroma plane (16-bit) */
short *restrict cb /* Cb chroma plane (16-bit) */
)
{
int i;
for (i = 0; i < (n >> 1); i++)
{
/* 0 1 2 3 */
/* cb0 y1 cr0 y0 */
y[2*i+0] = yc[4*i + 3];
y[2*i+1] = yc[4*i + 1];
cr[i] = yc[4*i + 2];
cb[i] = yc[4*i + 0];
}
}
/* ======================================================================== */
/* End of file: img_yc_demux_be16.c */
/* ------------------------------------------------------------------------ */
/* Copyright (c) 2002 Texas Instruments, Incorporated. */
/* All Rights Reserved. */
/* ======================================================================== */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -