terryky / tflite_gles_app

GPU accelerated deep learning inference applications for RaspberryPi / JetsonNano / Linux PC using TensorflowLite GPUDelegate / TensorRT
MIT License
488 stars 130 forks source link

undefined reference to 'update_video_texture', undefined reference to 'create_video_texture' #22

Closed laolihaile closed 3 years ago

laolihaile commented 3 years ago

I want to use a recorded video, When I execute the following command make -j4 ENABLE_VDEC=true I get the following error: ur/work/tflite_gles_app/gl2blazeface/main.c:308:undefined reference to 'update_video_texture' ur/work/tflite_gles_app/gl2blazeface/main.c:257:undefined reference to 'create_video_texture' when i make other apps, the same problem comes up How should I solve it please?

terryky commented 3 years ago

try make clean; make -j4 ENABLE_VDEC=true

laolihaile commented 3 years ago

try make clean; make -j4 ENABLE_VDEC=true

thank you very much