arm+dsp

所属分类:Linux/Unix编程
开发工具:C/C++
文件大小:3367KB
下载次数:111
上传日期:2010-02-02 21:58:14
上 传 者crocs
说明:  Davinci DM6446 loopback(arm) and sobel edge(dsp) processing

文件列表:
video_loopback_0820\build.bat (449, 2005-11-18)
video_loopback_0820\cc_build_Debug.log (135, 2007-07-19)
video_loopback_0820\clean.bat (97, 2005-11-03)
video_loopback_0820\Debug.lkf (338, 2007-07-19)
video_loopback_0820\main.c (1938, 2007-08-20)
video_loopback_0820\video.cmd (864, 2007-08-20)
video_loopback_0820\video_loopback.paf2 (2778, 2007-07-19)
video_loopback_0820\video_loopback.pjt (940, 2005-12-12)
video_loopback_0820\video_loopback.sbl (3653, 2007-07-19)
video_loopback_0820\video_test.c (8800, 2007-08-20)
video_loopback_0820\Debug\main.obj (3626, 2007-07-19)
video_loopback_0820\Debug\video_loopback.map (16851, 2007-07-19)
video_loopback_0820\Debug\video_loopback.out (135285, 2007-07-19)
video_loopback_0820\Debug\video_test.obj (7113, 2007-05-21)
video_loopback_0820\video_loopback.CS_\FILE.CDX (3072, 2007-07-19)
video_loopback_0820\video_loopback.CS_\FILE.DBF (732, 2007-07-19)
video_loopback_0820\video_loopback.CS_\FILE.FPT (1273, 2007-07-19)
video_loopback_0820\video_loopback.CS_\SYMBOL.CDX (129024, 2007-07-19)
video_loopback_0820\video_loopback.CS_\SYMBOL.DBF (98643, 2007-07-19)
video_loopback_0820\video_loopback.CS_\SYMBOL.FPT (172040, 2007-07-19)
dsp_sobel\csl\dsp\build\davinci_csl_lib.pjt (5219, 2005-12-12)
dsp_sobel\csl\dsp\example\cache\cache_example.c (10636, 2005-08-17)
dsp_sobel\csl\dsp\example\cache\cache_example.pjt (932, 2005-12-12)
dsp_sobel\csl\dsp\example\cache\cache_lnk.cmd (1343, 2005-12-12)
dsp_sobel\csl\dsp\example\idma\idma_example.c (6844, 2005-08-17)
dsp_sobel\csl\dsp\example\idma\idma_example.pjt (1118, 2005-12-12)
dsp_sobel\csl\dsp\example\idma\lnk_idma.cmd (3324, 2005-12-12)
dsp_sobel\csl\dsp\example\intc\dspcsl_davinci.cmd (873, 2005-12-12)
dsp_sobel\csl\dsp\example\intc\intc_example.c (15261, 2005-08-17)
dsp_sobel\csl\dsp\example\intc\intc_example.pjt (1128, 2005-12-12)
dsp_sobel\csl\dsp\example\intc\intc_tests.c (4229, 2005-08-17)
dsp_sobel\csl\dsp\example\mcbsp\mcbsp_example.c (12027, 2005-08-17)
dsp_sobel\csl\dsp\example\mcbsp\mcbsp_example.pjt (1056, 2005-12-12)
dsp_sobel\csl\dsp\example\mcbsp\mcbsp_lnk.cmd (1319, 2005-12-12)
dsp_sobel\csl\dsp\example\tsc\ctimer_lnk.cmd (1343, 2007-05-23)
dsp_sobel\csl\dsp\example\tsc\tsc_example.c (4081, 2005-08-17)
dsp_sobel\csl\dsp\example\tsc\tsc_example.pjt (939, 2005-12-12)
dsp_sobel\csl\dsp\inc\csl.h (656, 2005-08-17)
dsp_sobel\csl\dsp\inc\cslr.h (2272, 2005-08-17)
dsp_sobel\csl\dsp\inc\cslr_bwmngmt.h (13436, 2005-08-17)
... ...

;* ======================================================================== *; ;* TEXAS INSTRUMENTS, INC. *; ;* *; ;* C***xIMGLIB DSP Signal Processing Library *; ;* *; ;* Release: Version 1.04b *; ;* Snapshot date: 09-Oct-2003 *; ;* *; ;* 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) 2003 Texas Instruments, Incorporated. *; ;* All Rights Reserved. *; ;* ======================================================================== *; This file contains a brief description of the Imaging Library and how to use it. Other Related Documentation Located in ..\DOCS folder: SPRU023B.pdf - Imaging API User Guide Currently, the Imaging Library is provided as a source archive, as well as a Little Endian C6000 object library with header files. -------------------------------------------------------------------------------- Release Directory Structure -----+-----lib | +-----include | +-----examples lib - contains the library files (.lib) and the source code (.src) include - contains all of the library header files examples - contains examples -------------------------------------------------------------------------------- Using the Imaging Library There are really two ways the Imaging Library can be used, one is from within Code Composer Studio and the other is by using the command line tools. In both cases, it's a matter of including the library header file, linking to the correct build of the library, and calling the APIs. ------------------------------------------------- Using the Imaging Library in Code Composer Studio 1. First you have to specify to the linker to link the Imaging Library into your application. You do this by going to "Project->Options->Linker->Include Libraries" and then specify the Imaging Library, img***x.lib. 2. For each of your C files that you plan to use an Imaging Library kernel in, you must include the appropriate header file for each kernel. For instance, to use the kernel "IMG_fdct_8x8()", you must #include in that file. 3. Now you may use the Imaging Library API at will. ----------------------------------------------------- Using the Imaging Library with the Command Line Tools 1. You have to tell the linker to link your application with the Imaging library. You can do this by using the linker -l option in your linker command file or at the linker command line, i.e -limg***x.lib 2. For each of your C files that you plan to use an Imaging Library kernel in, you must include the appropriate header file for each kernel. For instance, to use the kernel "IMG_fdct_8x8()", you must #include in that file. -------------------------------------------------------------------------------- How do I Re-Build the Library? All of the Imaging Library source code is archived in the file img***x.src located in the LIB folder. This source archive may be rebuilt using mk6x as follows: mk6x img***x.src -mv***00 -l img***x.lib ******************************************************************************** * End of README.TXT ********************************************************************************

近期下载者

相关文件


收藏者