This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

VLIB API

i am trying to extract luma from uyvy using VLIB kernel

VLIB_extractLumaFromUYUV ((frameBuffPtr->frame.frameBufferPtr), 720, 786,576, arr);

.i have compiled successfully but there is problem in linking .i don't know which files should add to project,which path should give in -i directive,and which libraries should add.please help me,it is urgent.

and also clear my concept that is it necessary to copy files in our project folder after giving path in search directory?

  • Hi,

    We will work on this and will get back to you as soon as possible.

    Thanks & regards,
    Sivaraj K
  • Usually linker error means that the path to the library is not correct, or you do not link with the correct library.
    Look what symbol is missing, find what library the symbol is defined and verify that the path to the library is defined

    In general it makes it easy to answer when the posting specifies what core the code runs on (DSP? ARM?), what operating system including version, what TI tools are used how th build procedure (CCS or Make file, if CCS what version, what compiler version and so on) and what errors are reported

    Ran
  • Thank you for reply.
    i am using ccs3.3 ,windows xp ,dm6437 davinci processor
    i have solved problem .There is vlib.a64p file in packages/lib folder i have changed name to vlib.l64p & added to project .also given path of that file in -i directive.so, i want to jut clear that is it like that vlib.a64p is for arm and vlib.l64p is for dsp?