Original ardrone_brown from: http://brown-ros-pkg.googlecode.com/svn/trunk/experimental/ardrone_brown [revision 2797]
Esse commit está contido em:
@@ -0,0 +1,107 @@
|
||||
|
||||
GEN_CUSTOM_HEADER:=../Common/generated_custom.h
|
||||
|
||||
include custom.makefile
|
||||
include config.makefile
|
||||
|
||||
GNUTOOLS_PATH=/usr/local/$(GNUTOOLS_VERSION)/bin
|
||||
ifeq ("$(QUIET_BUILD)","yes")
|
||||
MAKE:=@PATH=$(GNUTOOLS_PATH):$(PATH) make -s
|
||||
else
|
||||
MAKE:=PATH=$(GNUTOOLS_PATH):$(PATH) make
|
||||
endif
|
||||
|
||||
define ADD_RULE_TEMPLATE
|
||||
TO_BUILD+=build_$(1)
|
||||
endef
|
||||
|
||||
# Add rule for each target
|
||||
$(foreach target,$(TARGETS),$(eval $(call ADD_RULE_TEMPLATE,$(target))))
|
||||
|
||||
.PHONY: linux_sample svn_update $(TO_BUILD) build_libs $(MAKECMDGOALS)
|
||||
|
||||
all: $(GEN_CUSTOM_HEADER) build_libs $(TO_BUILD)
|
||||
|
||||
$(GEN_CUSTOM_HEADER): custom.makefile
|
||||
@echo "#ifndef _GENERATED_CUSTOM_CONFIGURATION_H_" > $@
|
||||
@echo "#define _GENERATED_CUSTOM_CONFIGURATION_H_" >> $@
|
||||
@echo >> $@
|
||||
@echo "#if defined(BR2_PACKAGE_BCM4318_AP)" >> $@
|
||||
@echo "# define AP" >> $@
|
||||
@echo "#else" >> $@
|
||||
@echo "# define STA" >> $@
|
||||
@echo "#endif" >> $@
|
||||
@echo "#define CURRENT_NUM_VERSION_SOFT \"$(MAJOR_VERSION).$(MINOR_VERSION).$(MODIF_VERSION)\"" >> $@
|
||||
@echo "#define CURRENT_BUILD_DATE \"$(shell date +%F\ %H:%M)\"" >> $@
|
||||
@echo >> $@
|
||||
ifeq ("$(VIDEO_YUV)","yes")
|
||||
@echo "#define USE_VIDEO_YUV" >> $@
|
||||
endif
|
||||
ifeq ("$(RECORD_VISION_DATA)","yes")
|
||||
@echo "#define RECORD_VISION_DATA" >> $@
|
||||
endif
|
||||
@echo >> $@
|
||||
@echo "#define WIFI_NETWORK_NAME \"$(WIFI_NETWORK_NAME)\"" >> $@
|
||||
@echo "#define WIFI_BROADCAST \"$(WIFI_BROADCAST)\"" >> $@
|
||||
@echo "#define WIFI_ARDRONE_IP \"$(WIFI_ARDRONE_IP)\"" >> $@
|
||||
@echo >> $@
|
||||
@echo "#if defined(__linux__) || defined(USE_MINGW32)" >> $@
|
||||
@echo "# define WIFI_MOBILE_IP \"$(WIFI_MOBILE_IP)\"" >> $@
|
||||
@echo "# define WIRED_ITFNAME \"$(WIRED_ITFNAME)\"" >> $@
|
||||
@echo "#endif // ! __linux__" >> $@
|
||||
@echo >> $@
|
||||
@echo >> $@
|
||||
@echo "#endif // ! _GENERATED_CUSTOM_CONFIGURATION_H_" >> $@
|
||||
|
||||
ifneq "$(MAKECMDGOALS)" ""
|
||||
ifneq "$(MAKECMDGOALS)" "clean"
|
||||
ifneq "$(MAKECMDGOALS)" "update"
|
||||
$(MAKECMDGOALS):
|
||||
@echo -e "\nCannot make what you ask me to do :-("
|
||||
else
|
||||
$(MAKECMDGOALS): svn_update
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
$(MAKECMDGOALS): build_libs $(TO_BUILD)
|
||||
|
||||
checkpackages:
|
||||
sh ./check_dependencies.sh
|
||||
|
||||
define GENERIC_RULES_TEMPLATE
|
||||
build_$(1):
|
||||
@$(MAKE) -C $(1) $(MAKECMDGOALS)
|
||||
endef
|
||||
|
||||
$(foreach target,$(TARGETS),$(eval $(call GENERIC_RULES_TEMPLATE,$(target))))
|
||||
|
||||
build_libs: checkpackages
|
||||
@$(MAKE) PC_TARGET=yes USE_ARDRONE_TOOL=yes TARGET=pc_ USE_MINGW32=no -C ../Lib/Build $(MAKECMDGOALS)
|
||||
|
||||
ifeq ("$(MINGW32_MODE)","yes")
|
||||
ifeq ($(shell which i586-mingw32msvc-gcc 2> /dev/null),)
|
||||
$(warning You need MinGW32 to compile My Ardrone lib for Windows if you want. (under Debian: apt-get install mingw32))
|
||||
else
|
||||
# @$(MAKE) PC_TARGET=yes TARGET=mingw32_ USE_MINGW32=yes TMP_SDK_FLAGS="USE_MINGW32=yes NO_COM=yes USE_BLUEZ=no" -C ../Lib/Build $(MAKECMDGOALS)
|
||||
# @$(MAKE) PC_TARGET=yes TARGET=emb_mingw32_ USE_MINGW32=yes CONTROL_DLL=yes TMP_SDK_FLAGS="USE_MINGW32=yes NO_COM=yes USE_BLUEZ=no" -C ../Lib/Build $(MAKECMDGOALS)
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WIIMOTE_SUPPORT),yes)
|
||||
# @$(MAKE) PC_TARGET=yes TARGET=pc_ TMP_SDK_FLAGS="USE_BLUEZ=yes" -C ../Lib/libcwiid $(MAKECMDGOALS)
|
||||
endif
|
||||
|
||||
define svn_update_template
|
||||
cd ../.. ; \
|
||||
echo "Checking out tag $(1) of $(2) ..." ; \
|
||||
if [ $(1) != head ] ; then \
|
||||
svn co -r $(1) https://svn.ardrone.org/repo/ARDrone_API/$(2) ; \
|
||||
else \
|
||||
svn co https://svn.ardrone.org/repo/ARDrone_API/$(2) ; \
|
||||
fi ; \
|
||||
cd Soft/Build ;
|
||||
endef
|
||||
|
||||
svn_update:
|
||||
@-$(call svn_update_template,$(SDK_VERSION),ARDroneLib)
|
||||
|
||||
Arquivo executável
+64
@@ -0,0 +1,64 @@
|
||||
#!/bin/sh
|
||||
|
||||
## Author : stephane.piskorski@parrot.com
|
||||
## Date : 19th,Oct. 2010
|
||||
|
||||
|
||||
check()
|
||||
{
|
||||
if [ `cat ./temporary_file | grep $1 | wc -l` -eq 0 ] ; then
|
||||
echo " $1";
|
||||
fi
|
||||
}
|
||||
|
||||
verify()
|
||||
{
|
||||
packages="$packages$(check $1)";
|
||||
}
|
||||
|
||||
|
||||
packages="";
|
||||
|
||||
if [ `which uname` ] ; then
|
||||
if [ `uname -a | grep Ubuntu | wc -l` ] ; then
|
||||
|
||||
echo "\033[31mChecking required Ubuntu packages ...\033[0m";
|
||||
|
||||
if [ ! -e ./temporary_file ] ; then # check that the temp file does not exist
|
||||
|
||||
dpkg -l > ./temporary_file;
|
||||
|
||||
#To use FFMPEG recording
|
||||
verify "libavformat-dev";
|
||||
verify "libavcodec-dev";
|
||||
verify "libavutil-dev";
|
||||
verify "libswscale-dev";
|
||||
verify "libavfilter-dev";
|
||||
|
||||
#To use the Wiimote in Navigation
|
||||
verify "libcwiid1-dev";
|
||||
verify "libbluetooth-dev";
|
||||
|
||||
#To compile Navigation
|
||||
verify "libsdl1.2-dev";
|
||||
verify "libgtk2.0-dev";
|
||||
verify "libxml2-dev";
|
||||
verify "libudev-dev";
|
||||
verify "libiw-dev";
|
||||
|
||||
if [ "$packages" != "" ] ; then
|
||||
echo "You should install the following packages to compile the Mykonos project with Ubuntu:\n $packages";
|
||||
echo "Do you want to install them now [y/n] ?";
|
||||
read user_answer ;
|
||||
if [ "$user_answer" = "y" ]; then
|
||||
sudo apt-get install $packages;
|
||||
fi
|
||||
else
|
||||
echo "ok.";
|
||||
fi
|
||||
|
||||
rm ./temporary_file;
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
@@ -0,0 +1,171 @@
|
||||
|
||||
#########################################################
|
||||
# Common build definitions (CUSTOM)
|
||||
#########################################################
|
||||
|
||||
RELEASE_BUILD = yes
|
||||
QUIET_BUILD = yes
|
||||
|
||||
#########################################################
|
||||
# System utility definitions (STATIC)
|
||||
#########################################################
|
||||
define CHECK_UNDEFINITION
|
||||
ifdef $(1)
|
||||
$$(warning ERROR : $(1) defined $(2))
|
||||
ERROR=1
|
||||
endif
|
||||
endef
|
||||
|
||||
define EXIT_IF_ERROR
|
||||
ifeq "$$(ERROR)" "1"
|
||||
$$(error There has been some errors)
|
||||
endif
|
||||
endef
|
||||
|
||||
|
||||
#########################################################
|
||||
# Validity control (STATIC)
|
||||
#########################################################
|
||||
|
||||
ifdef PC_TARGET
|
||||
$(eval $(call CHECK_UNDEFINITION,CONSOLE_TARGET,(should not be defined when PC_TARGET is defined)))
|
||||
endif
|
||||
|
||||
$(eval $(call EXIT_IF_ERROR))
|
||||
|
||||
|
||||
#########################################################
|
||||
# Common definitions (STATIC)
|
||||
#########################################################
|
||||
|
||||
ifeq "$(QUIET_BUILD)" "yes"
|
||||
MAKE=@make -s
|
||||
else
|
||||
MAKE=make
|
||||
endif
|
||||
|
||||
COMMON_DIR:=../Common
|
||||
|
||||
SDK_FLAGS:="NO_EXAMPLES=yes"
|
||||
SDK_FLAGS+="USE_SDK=yes"
|
||||
SDK_FLAGS+="QUIET_BUILD=$(QUIET_BUILD)"
|
||||
SDK_FLAGS+="RELEASE_BUILD=$(RELEASE_BUILD)"
|
||||
SDK_FLAGS+="SDK_VERSION=$(SDK_VERSION)"
|
||||
|
||||
ifeq ($(filter NO_COM=%,$(TMP_SDK_FLAGS)),)
|
||||
SDK_FLAGS+="NO_COM=no"
|
||||
endif
|
||||
|
||||
#########################################################
|
||||
# PC_TARGET specific definitions (STATIC)
|
||||
#########################################################
|
||||
ifdef PC_TARGET
|
||||
SDK_FLAGS+="NO_COM=no"
|
||||
|
||||
ifeq ($(ARDRONE_TARGET_OS),Linux)
|
||||
OS_DEFINE=GNU_LINUX
|
||||
else
|
||||
ifeq ($(ARDRONE_TARGET_OS),iphoneos)
|
||||
OS_DEFINE=GNU_LINUX
|
||||
else
|
||||
ifeq ($(ARDRONE_TARGET_OS),iphonesimulator)
|
||||
OS_DEFINE=GNU_LINUX
|
||||
else
|
||||
TARGET:=$(TARGET).exe
|
||||
OS_DEFINE=WINDOW
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
GENERIC_CFLAGS+=-D_MOBILE
|
||||
|
||||
ifeq ("$(PC_USE_TABLE_PILOTAGE)","yes")
|
||||
GENERIC_CFLAGS+=-DUSE_TABLE_PILOTAGE
|
||||
endif
|
||||
|
||||
ifeq ("$(RECORD_VIDEO)","yes")
|
||||
GENERIC_CFLAGS+=-DRECORD_VIDEO
|
||||
endif
|
||||
|
||||
GENERIC_CFLAGS+=-D$(OS_DEFINE)
|
||||
ifeq ($(IPHONE_MODE),yes)
|
||||
ifeq ($(ARDRONE_TARGET_OS),iphoneos)
|
||||
GENERIC_CFLAGS+=-DTARGET_OS_IPHONE
|
||||
else
|
||||
GENERIC_CFLAGS+=-DTARGET_IPHONE_SIMULATOR
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq ("$(USE_MINGW32)","yes")
|
||||
GENERIC_CFLAGS+=$(shell pkg-config --cflags gtk+-2.0)
|
||||
GENERIC_LIBS+=$(shell pkg-config --libs gtk+-2.0)
|
||||
endif
|
||||
|
||||
ifeq ("$(USE_LINUX)","yes")
|
||||
SDK_FLAGS+="USE_LINUX=yes"
|
||||
else
|
||||
SDK_FLAGS+="USE_LINUX=no"
|
||||
endif
|
||||
|
||||
SDK_FLAGS+="USE_ELINUX=no"
|
||||
|
||||
ifneq ($(findstring iphone,$(ARDRONE_TARGET_OS)),)
|
||||
SDK_FLAGS+="USE_IPHONE=yes"
|
||||
SDK_FLAGS+="IPHONE_PLATFORM=$(ARDRONE_TARGET_OS)"
|
||||
SDK_FLAGS+="IPHONE_SDK_PATH=$(IPHONE_SDK_PATH)"
|
||||
else
|
||||
SDK_FLAGS+="USE_IPHONE=no"
|
||||
endif
|
||||
|
||||
SDK_FLAGS+="ARDRONE_TARGET_ARCH=$(ARDRONE_TARGET_ARCH)"
|
||||
|
||||
ifeq ("$(USE_NDS)","yes")
|
||||
SDK_FLAGS+="USE_NDS=yes"
|
||||
SDK_FLAGS+="NDS_CPU=ARM7"
|
||||
else
|
||||
SDK_FLAGS+="USE_NDS=no"
|
||||
endif
|
||||
|
||||
ifeq ("$(USE_ANDROID)","yes")
|
||||
SDK_FLAGS+="USE_ANDROID=yes"
|
||||
SDK_FLAGS+="TOOLCHAIN_VERSION=arm-eabi-4.4.0"
|
||||
SDK_FLAGS+="NDK_PLATFORM_VERSION=android-5"
|
||||
else
|
||||
SDK_FLAGS+="USE_ANDROID=no"
|
||||
endif
|
||||
|
||||
ifeq ($(FFMPEG_RECORDING_SUPPORT),yes)
|
||||
ifeq ($(USE_LINUX),yes)
|
||||
SDK_FLAGS+="USE_FFMPEG=yes"
|
||||
GENERIC_CFLAGS+=-DUSE_FFMPEG
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(filter USE_BLUEZ=%,$(TMP_SDK_FLAGS)),)
|
||||
SDK_FLAGS+="USE_BLUEZ=no"
|
||||
endif
|
||||
|
||||
SDK_FLAGS+="USE_VLIB=yes"
|
||||
SDK_FLAGS+="USE_BONJOUR=no"
|
||||
SDK_FLAGS+="USE_WIFI=yes"
|
||||
|
||||
SDK_FLAGS+="USE_BROADCOM=no"
|
||||
SDK_FLAGS+="USE_IWLIB=no"
|
||||
|
||||
SDK_FLAGS+="FF_ARCH=Intel"
|
||||
|
||||
SDK_FLAGS+="USE_PARROTOS_CORE=no"
|
||||
SDK_FLAGS+="USE_PARROTOS_DRIVERS=no"
|
||||
SDK_FLAGS+="USE_PARROTOS_DEVS=no"
|
||||
SDK_FLAGS+="USE_PARROTOS_CODEC=no"
|
||||
|
||||
|
||||
SDK_FLAGS+="USE_ARDRONELIB=yes"
|
||||
SDK_FLAGS+="USE_ARDRONE_VISION=yes"
|
||||
SDK_FLAGS+="USE_ARDRONE_POLARIS=no"
|
||||
SDK_FLAGS+="USE_ARDRONE_VICON=no"
|
||||
SDK_FLAGS+="USE_ARDRONE_TEST_BENCHS=no"
|
||||
SDK_FLAGS+="USE_ARDRONE_CALIBRATION=no"
|
||||
|
||||
endif
|
||||
|
||||
@@ -0,0 +1,67 @@
|
||||
#########################################################
|
||||
# Common definitions (CUSTOM)
|
||||
#########################################################
|
||||
ifndef IPHONE_MODE
|
||||
IPHONE_MODE = no
|
||||
endif
|
||||
ifndef MINGW32_MODE
|
||||
MINGW32_MODE = no
|
||||
endif
|
||||
ifndef USE_NDS
|
||||
USE_NDS = no
|
||||
endif
|
||||
ifndef USE_ANDROID
|
||||
USE_ANDROID = no
|
||||
endif
|
||||
ifndef USE_LINUX
|
||||
USE_LINUX = yes
|
||||
endif
|
||||
MAJOR_VERSION = 0
|
||||
MINOR_VERSION = 0
|
||||
MODIF_VERSION = 0
|
||||
|
||||
#########################################################
|
||||
# ARDroneTool options definitions
|
||||
#########################################################
|
||||
USE_ARDRONE_MAINLOOP=yes
|
||||
USE_CHECK_WIFI_CONFIG=no
|
||||
|
||||
ifeq ($(IPHONE_MODE),yes)
|
||||
USE_ARDRONE_MAINLOOP=no
|
||||
IPHONE_SDK_PATH=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0
|
||||
# iphoneos or iphonesimulator
|
||||
ARDRONE_TARGET_OS=iphoneos
|
||||
ARDRONE_TARGET_ARCH=armv6
|
||||
else
|
||||
ifeq ($(USE_ANDROID),yes)
|
||||
USE_ARDRONE_MAINLOOP=no
|
||||
endif
|
||||
ARDRONE_TARGET_OS=Linux
|
||||
endif
|
||||
|
||||
################## Wifi Options ##################
|
||||
# Name of the network you want to join or create
|
||||
WIFI_NETWORK_NAME = "ardronenetwork"
|
||||
WIFI_BROADCAST = "192.168.1.255"
|
||||
|
||||
################## Video Options ##################
|
||||
# Tells if we want to record video on pc side
|
||||
RECORD_VIDEO = yes
|
||||
FFMPEG_RECORDING_SUPPORT = yes
|
||||
# Tells if we want to add vision data to video stream (in raw mode)
|
||||
# Vision data are saved into file only if we define RECORD_VIDEO too
|
||||
RECORD_VISION_DATA = no
|
||||
# If the yuv mode is choosen then video is displayed & recorded in color
|
||||
# Otherwise only luminances are displayed & recorded
|
||||
VIDEO_YUV = yes
|
||||
|
||||
#########################################################
|
||||
# Embedded definitions (CUSTOM)
|
||||
#########################################################
|
||||
WIFI_ARDRONE_IP = "192.168.1.1"
|
||||
|
||||
#########################################################
|
||||
# Linux definitions (CUSTOM)
|
||||
#########################################################
|
||||
WIFI_MOBILE_IP = "192.168.1.2"
|
||||
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
filter.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Maths/filter.c.d: ../..//Soft/Lib/Maths/filter.c ../..//Soft/Lib/Maths/maths.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h /usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/filter.h
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
maths.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Maths/maths.c.d: ../..//Soft/Lib/Maths/maths.c ../..//Soft/Lib/Maths/maths.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h /usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
matrices.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Maths/matrices.c.d: ../..//Soft/Lib/Maths/matrices.c ../VP_Os/vp_os_assert.h \
|
||||
/usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h ../..//Soft/Lib/Maths/matrices.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../..//Soft/Lib/Maths/maths.h \
|
||||
/usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
matrix3d.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Maths/matrix3d.c.d: ../..//Soft/Lib/Maths/matrix3d.c \
|
||||
../..//Soft/Lib/Maths/matrix3d.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../..//Soft/Lib/Maths/matrices.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
quaternions.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Maths/quaternions.c.d: ../..//Soft/Lib/Maths/quaternions.c \
|
||||
../VP_Os/vp_os_assert.h /usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h ../..//Soft/Lib/Maths/quaternions.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../..//Soft/Lib/Maths/maths.h \
|
||||
/usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
time.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Maths/time.c.d: ../..//Soft/Lib/Maths/time.c ../..//Soft/Lib/Maths/time.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h /usr/include/sys/time.h /usr/include/time.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
vision_math.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Maths/vision_math.c.d: ../..//Soft/Lib/Maths/vision_math.c ../VP_Os/vp_os_print.h \
|
||||
/usr/include/stdio.h /usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../..//Soft/Lib/Maths/vision_math.h ../..//Soft/Lib/Maths/maths.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
/usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h
|
||||
+71
@@ -0,0 +1,71 @@
|
||||
ardrone_at_mutex.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/AT/ardrone_at_mutex.c.d: ../..//Soft/Lib/ardrone_tool/AT/ardrone_at_mutex.c \
|
||||
../VP_Os/vp_os_assert.h /usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h ../VP_Os/vp_os_print.h /usr/include/stdio.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_com.h \
|
||||
../..//Soft/Common/config.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../..//Soft/Common/generated_custom.h ../..//Soft/Common/autoconf.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_serial.h ../VP_Com/vp_com.h \
|
||||
../VP_Os/vp_os_signal.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
/usr/include/pthread.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_thread_helper.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_wifi.h \
|
||||
../..//Soft/Lib/ardrone_tool/ardrone_tool.h \
|
||||
../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h ../ATcodec/ATcodec_api.h \
|
||||
../ATcodec/ATcodec.h ../ATcodec/ATcodec_Memory.h \
|
||||
../ATcodec/ATcodec_Error.h ../ATcodec/ATcodec_Tree.h \
|
||||
../ATcodec/ATcodec_Buffer.h ../..//Soft/Common/navdata_common.h \
|
||||
../..//Soft/Common/vision_common.h ../..//Soft/Lib/Maths/maths.h \
|
||||
/usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/string.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/string3.h /usr/include/bits/waitflags.h \
|
||||
/usr/include/bits/waitstatus.h /usr/include/sys/types.h \
|
||||
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/sigset.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/alloca.h /usr/include/bits/stdlib.h \
|
||||
../..//Soft/Lib/Maths/quaternions.h ../..//Soft/Common/led_animation.h \
|
||||
../..//Soft/Common/config_keys.h ../../VLIB/../VLIB/video_codec.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h ../..//Soft/Common/at_msgs_ids.h \
|
||||
../..//Soft/Common/at_msgs.h ../VP_Com/vp_com_socket.h
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
config_wifi.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Com/config_wifi.c.d: ../..//Soft/Lib/ardrone_tool/Com/config_wifi.c \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../..//Soft/Common/config.h ../..//Soft/Common/generated_custom.h \
|
||||
../..//Soft/Common/autoconf.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_com.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_serial.h ../VP_Com/vp_com.h \
|
||||
../VP_Os/vp_os_signal.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_thread_helper.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_wifi.h ../VP_Com/vp_com_socket.h \
|
||||
/usr/include/arpa/inet.h /usr/include/netinet/in.h \
|
||||
/usr/include/sys/socket.h /usr/include/sys/uio.h /usr/include/bits/uio.h \
|
||||
/usr/include/bits/socket.h /usr/include/bits/sockaddr.h \
|
||||
/usr/include/asm/socket.h /usr/include/asm-generic/socket.h \
|
||||
/usr/include/asm/sockios.h /usr/include/asm-generic/sockios.h \
|
||||
/usr/include/bits/socket2.h /usr/include/bits/in.h \
|
||||
/usr/include/ifaddrs.h /usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
ardrone_control.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Control/ardrone_control.c.d: ../..//Soft/Lib/ardrone_tool/Control/ardrone_control.c \
|
||||
../..//Soft/Common/config.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../..//Soft/Common/generated_custom.h \
|
||||
../..//Soft/Common/autoconf.h ../VP_Os/vp_os_print.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h ../VP_Com/vp_com.h \
|
||||
../VP_Os/vp_os_signal.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
/usr/include/pthread.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_thread_helper.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h ../ATcodec/ATcodec_api.h \
|
||||
../ATcodec/ATcodec.h ../ATcodec/ATcodec_Memory.h \
|
||||
../ATcodec/ATcodec_Error.h ../ATcodec/ATcodec_Tree.h \
|
||||
../ATcodec/ATcodec_Buffer.h ../..//Soft/Common/navdata_common.h \
|
||||
../..//Soft/Common/vision_common.h ../..//Soft/Lib/Maths/maths.h \
|
||||
/usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../..//Soft/Lib/Maths/quaternions.h \
|
||||
../..//Soft/Common/led_animation.h ../..//Soft/Common/config_keys.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/libavutil/attributes.h /usr/include/libavutil/mem.h \
|
||||
/usr/include/libavutil/error.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/mathematics.h /usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../..//Soft/Lib/ardrone_tool/ardrone_tool.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control_configuration.h \
|
||||
../..//Soft/Lib/iniparser3.0b/src/iniparser.h \
|
||||
../..//Soft/Lib/iniparser3.0b/src/dictionary.h /usr/include/unistd.h \
|
||||
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
|
||||
/usr/include/bits/confname.h /usr/include/getopt.h \
|
||||
/usr/include/bits/unistd.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control_soft_update.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control_ack.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_com.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_serial.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_wifi.h /usr/include/sys/socket.h \
|
||||
/usr/include/sys/uio.h /usr/include/bits/uio.h \
|
||||
/usr/include/bits/socket.h /usr/include/bits/sockaddr.h \
|
||||
/usr/include/asm/socket.h /usr/include/asm-generic/socket.h \
|
||||
/usr/include/asm/sockios.h /usr/include/asm-generic/sockios.h \
|
||||
/usr/include/bits/socket2.h /usr/include/sys/ioctl.h \
|
||||
/usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \
|
||||
/usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \
|
||||
/usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \
|
||||
/usr/include/bits/ioctl-types.h /usr/include/netinet/in.h \
|
||||
/usr/include/bits/in.h /usr/include/netinet/tcp.h
|
||||
+69
@@ -0,0 +1,69 @@
|
||||
ardrone_control_ack.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Control/ardrone_control_ack.c.d: \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control_ack.c \
|
||||
../..//Soft/Common/config.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../..//Soft/Common/generated_custom.h \
|
||||
../..//Soft/Common/autoconf.h ../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h ../ATcodec/ATcodec_api.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
/usr/include/pthread.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../ATcodec/ATcodec.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
../ATcodec/ATcodec_Memory.h ../ATcodec/ATcodec_Error.h \
|
||||
../ATcodec/ATcodec_Tree.h ../ATcodec/ATcodec_Buffer.h \
|
||||
../..//Soft/Common/navdata_common.h ../..//Soft/Common/vision_common.h \
|
||||
../..//Soft/Lib/Maths/maths.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../..//Soft/Lib/Maths/quaternions.h \
|
||||
../..//Soft/Common/led_animation.h ../..//Soft/Common/config_keys.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/stdio.h /usr/include/libio.h \
|
||||
/usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control_ack.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control.h \
|
||||
../VP_Api/vp_api_thread_helper.h
|
||||
+74
@@ -0,0 +1,74 @@
|
||||
ardrone_control_configuration.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Control/ardrone_control_configuration.c.d: \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control_configuration.c \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h ../VP_Os/vp_os_print.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h ../ATcodec/ATcodec_api.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/bits/setjmp.h ../ATcodec/ATcodec.h \
|
||||
../ATcodec/ATcodec_Memory.h ../ATcodec/ATcodec_Error.h \
|
||||
../ATcodec/ATcodec_Tree.h ../ATcodec/ATcodec_Buffer.h \
|
||||
../..//Soft/Common/navdata_common.h ../..//Soft/Common/config.h \
|
||||
../..//Soft/Common/generated_custom.h ../..//Soft/Common/autoconf.h \
|
||||
../..//Soft/Common/vision_common.h ../..//Soft/Lib/Maths/maths.h \
|
||||
/usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../..//Soft/Lib/Maths/quaternions.h ../..//Soft/Common/led_animation.h \
|
||||
../..//Soft/Common/config_keys.h ../../VLIB/../VLIB/video_codec.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control_configuration.h \
|
||||
../..//Soft/Lib/iniparser3.0b/src/iniparser.h \
|
||||
../..//Soft/Lib/iniparser3.0b/src/dictionary.h /usr/include/unistd.h \
|
||||
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
|
||||
/usr/include/bits/confname.h /usr/include/getopt.h \
|
||||
/usr/include/bits/unistd.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control.h \
|
||||
../VP_Api/vp_api_thread_helper.h
|
||||
+67
@@ -0,0 +1,67 @@
|
||||
ardrone_control_soft_update.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Control/ardrone_control_soft_update.c.d: \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control_soft_update.c \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../..//Soft/Common/config.h ../..//Soft/Common/generated_custom.h \
|
||||
../..//Soft/Common/autoconf.h ../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h ../ATcodec/ATcodec_api.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/bits/setjmp.h ../ATcodec/ATcodec.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
../ATcodec/ATcodec_Memory.h ../ATcodec/ATcodec_Error.h \
|
||||
../ATcodec/ATcodec_Tree.h ../ATcodec/ATcodec_Buffer.h \
|
||||
../..//Soft/Common/navdata_common.h ../..//Soft/Common/vision_common.h \
|
||||
../..//Soft/Lib/Maths/maths.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../..//Soft/Lib/Maths/quaternions.h ../..//Soft/Common/led_animation.h \
|
||||
../..//Soft/Common/config_keys.h ../../VLIB/../VLIB/video_codec.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/stdio.h /usr/include/libio.h \
|
||||
/usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/libavutil/attributes.h /usr/include/libavutil/mem.h \
|
||||
/usr/include/libavutil/error.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/mathematics.h /usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control_soft_update.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control.h \
|
||||
../VP_Api/vp_api_thread_helper.h
|
||||
+71
@@ -0,0 +1,71 @@
|
||||
ardrone_navdata_control.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Control/ardrone_navdata_control.c.d: \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_navdata_control.c \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_navdata_control.h \
|
||||
../..//Soft/Lib/ardrone_tool/Navdata/ardrone_navdata_client.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Api/vp_api_thread_helper.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
/usr/include/pthread.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h ../ATcodec/ATcodec_api.h \
|
||||
../ATcodec/ATcodec.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
../ATcodec/ATcodec_Memory.h ../ATcodec/ATcodec_Error.h \
|
||||
../ATcodec/ATcodec_Tree.h ../ATcodec/ATcodec_Buffer.h \
|
||||
../..//Soft/Common/navdata_common.h ../..//Soft/Common/config.h \
|
||||
../..//Soft/Common/generated_custom.h ../..//Soft/Common/autoconf.h \
|
||||
../..//Soft/Common/vision_common.h ../..//Soft/Lib/Maths/maths.h \
|
||||
/usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../..//Soft/Lib/Maths/quaternions.h \
|
||||
../..//Soft/Common/led_animation.h ../..//Soft/Common/config_keys.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/stdio.h /usr/include/libio.h \
|
||||
/usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../..//Soft/Lib/ardrone_tool/Navdata/ardrone_general_navdata.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control.h
|
||||
+80
@@ -0,0 +1,80 @@
|
||||
ardrone_general_navdata.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Navdata/ardrone_general_navdata.c.d: \
|
||||
../..//Soft/Lib/ardrone_tool/Navdata/ardrone_general_navdata.c \
|
||||
/usr/include/stdio.h /usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/sys/time.h /usr/include/time.h /usr/include/bits/time.h \
|
||||
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/sigset.h ../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h ../ATcodec/ATcodec_api.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
/usr/include/pthread.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h \
|
||||
/usr/include/bits/sched.h /usr/include/xlocale.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/bits/setjmp.h \
|
||||
../ATcodec/ATcodec.h ../ATcodec/ATcodec_Memory.h \
|
||||
../ATcodec/ATcodec_Error.h ../ATcodec/ATcodec_Tree.h \
|
||||
../ATcodec/ATcodec_Buffer.h ../..//Soft/Common/navdata_common.h \
|
||||
../..//Soft/Common/config.h ../..//Soft/Common/generated_custom.h \
|
||||
../..//Soft/Common/autoconf.h ../..//Soft/Common/vision_common.h \
|
||||
../..//Soft/Lib/Maths/maths.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/alloca.h /usr/include/bits/stdlib.h \
|
||||
../..//Soft/Lib/Maths/quaternions.h ../..//Soft/Common/led_animation.h \
|
||||
../..//Soft/Common/config_keys.h ../../VLIB/../VLIB/video_codec.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../..//Soft/Lib/ardrone_tool/ardrone_tool.h \
|
||||
../..//Soft/Lib/ardrone_tool/ardrone_tool_configuration.h \
|
||||
../VP_Os/vp_os_signal.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
../VP_Api/vp_api_thread_helper.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control_ack.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control_configuration.h \
|
||||
../..//Soft/Lib/iniparser3.0b/src/iniparser.h \
|
||||
../..//Soft/Lib/iniparser3.0b/src/dictionary.h /usr/include/unistd.h \
|
||||
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
|
||||
/usr/include/bits/confname.h /usr/include/getopt.h \
|
||||
/usr/include/bits/unistd.h \
|
||||
../..//Soft/Lib/ardrone_tool/Navdata/ardrone_navdata_client.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_navdata_control.h \
|
||||
../..//Soft/Lib/ardrone_tool/Navdata/ardrone_general_navdata.h \
|
||||
../..//Soft/Lib/utils/ardrone_gen_ids.h
|
||||
+88
@@ -0,0 +1,88 @@
|
||||
ardrone_navdata_client.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Navdata/ardrone_navdata_client.c.d: \
|
||||
../..//Soft/Lib/ardrone_tool/Navdata/ardrone_navdata_client.c \
|
||||
/usr/include/errno.h /usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
../..//Soft/Common/config.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../..//Soft/Common/generated_custom.h ../..//Soft/Common/autoconf.h \
|
||||
../VP_Os/vp_os_print.h /usr/include/stdio.h /usr/include/libio.h \
|
||||
/usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h ../VP_Com/vp_com.h \
|
||||
../VP_Os/vp_os_signal.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/bits/setjmp.h \
|
||||
../VP_Api/vp_api_thread_helper.h ../VP_Os/vp_os_thread.h \
|
||||
..//VP_Os/linux/vp_os_thread_dep.h ../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h ../ATcodec/ATcodec_api.h \
|
||||
../ATcodec/ATcodec.h ../ATcodec/ATcodec_Memory.h \
|
||||
../ATcodec/ATcodec_Error.h ../ATcodec/ATcodec_Tree.h \
|
||||
../ATcodec/ATcodec_Buffer.h ../..//Soft/Common/navdata_common.h \
|
||||
../..//Soft/Common/vision_common.h ../..//Soft/Lib/Maths/maths.h \
|
||||
/usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../..//Soft/Lib/Maths/quaternions.h \
|
||||
../..//Soft/Common/led_animation.h ../..//Soft/Common/config_keys.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../..//Soft/Lib/ardrone_tool/ardrone_tool.h \
|
||||
../..//Soft/Lib/ardrone_tool/Navdata/ardrone_navdata_client.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_navdata_control.h \
|
||||
../..//Soft/Lib/ardrone_tool/Navdata/ardrone_general_navdata.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_com.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_serial.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_wifi.h /usr/include/sys/socket.h \
|
||||
/usr/include/sys/uio.h /usr/include/bits/uio.h \
|
||||
/usr/include/bits/socket.h /usr/include/bits/sockaddr.h \
|
||||
/usr/include/asm/socket.h /usr/include/asm-generic/socket.h \
|
||||
/usr/include/asm/sockios.h /usr/include/asm-generic/sockios.h \
|
||||
/usr/include/bits/socket2.h /usr/include/sys/ioctl.h \
|
||||
/usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \
|
||||
/usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \
|
||||
/usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \
|
||||
/usr/include/bits/ioctl-types.h /usr/include/netinet/in.h \
|
||||
/usr/include/bits/in.h /usr/include/netinet/tcp.h /usr/include/unistd.h \
|
||||
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
|
||||
/usr/include/bits/confname.h /usr/include/getopt.h \
|
||||
/usr/include/bits/unistd.h
|
||||
+74
@@ -0,0 +1,74 @@
|
||||
ardrone_navdata_file.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Navdata/ardrone_navdata_file.c.d: \
|
||||
../..//Soft/Lib/ardrone_tool/Navdata/ardrone_navdata_file.c \
|
||||
/usr/include/time.h /usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/bits/time.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/xlocale.h \
|
||||
/usr/include/sys/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
|
||||
/usr/include/bits/waitstatus.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_malloc.h /usr/include/assert.h \
|
||||
/usr/include/string.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/bits/string3.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../VP_Os/vp_os_print.h /usr/include/stdio.h /usr/include/libio.h \
|
||||
/usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../..//Soft/Lib/ardrone_tool/ardrone_tool.h \
|
||||
../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h ../ATcodec/ATcodec_api.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/bits/setjmp.h ../ATcodec/ATcodec.h \
|
||||
../ATcodec/ATcodec_Memory.h ../ATcodec/ATcodec_Error.h \
|
||||
../ATcodec/ATcodec_Tree.h ../ATcodec/ATcodec_Buffer.h \
|
||||
../..//Soft/Common/navdata_common.h ../..//Soft/Common/config.h \
|
||||
../..//Soft/Common/generated_custom.h ../..//Soft/Common/autoconf.h \
|
||||
../..//Soft/Common/vision_common.h ../..//Soft/Lib/Maths/maths.h \
|
||||
/usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../..//Soft/Lib/Maths/quaternions.h ../..//Soft/Common/led_animation.h \
|
||||
../..//Soft/Common/config_keys.h ../../VLIB/../VLIB/video_codec.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../..//Soft/Lib/ardrone_tool/Navdata/ardrone_navdata_file.h \
|
||||
../..//Soft/Lib/ardrone_tool/Navdata/ardrone_navdata_client.h \
|
||||
../VP_Api/vp_api_thread_helper.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_navdata_control.h \
|
||||
../..//Soft/Lib/ardrone_tool/Navdata/ardrone_general_navdata.h \
|
||||
../..//Soft/Lib/ardrone_tool/UI/ardrone_tool_ui.h \
|
||||
../..//Soft/Lib/ardrone_tool/UI/ardrone_input.h
|
||||
+64
@@ -0,0 +1,64 @@
|
||||
navdata.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Navdata/navdata.c.d: ../..//Soft/Lib/ardrone_tool/Navdata/navdata.c \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Os/vp_os_malloc.h /usr/include/assert.h \
|
||||
/usr/include/string.h /usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_print.h /usr/include/stdio.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h ../ATcodec/ATcodec_api.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/bits/setjmp.h ../ATcodec/ATcodec.h \
|
||||
../ATcodec/ATcodec_Memory.h ../ATcodec/ATcodec_Error.h \
|
||||
../ATcodec/ATcodec_Tree.h ../ATcodec/ATcodec_Buffer.h \
|
||||
../..//Soft/Common/navdata_common.h ../..//Soft/Common/config.h \
|
||||
../..//Soft/Common/generated_custom.h ../..//Soft/Common/autoconf.h \
|
||||
../..//Soft/Common/vision_common.h ../..//Soft/Lib/Maths/maths.h \
|
||||
/usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../..//Soft/Lib/Maths/quaternions.h ../..//Soft/Common/led_animation.h \
|
||||
../..//Soft/Common/config_keys.h ../../VLIB/../VLIB/video_codec.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/libavutil/attributes.h /usr/include/libavutil/mem.h \
|
||||
/usr/include/libavutil/error.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/mathematics.h /usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h
|
||||
+68
@@ -0,0 +1,68 @@
|
||||
ardrone_input.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/UI/ardrone_input.c.d: ../..//Soft/Lib/ardrone_tool/UI/ardrone_input.c \
|
||||
../VP_Os/vp_os_print.h /usr/include/stdio.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../VP_Os/vp_os_assert.h /usr/include/assert.h \
|
||||
../..//Soft/Lib/ardrone_tool/UI/ardrone_input.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../..//Soft/Lib/ardrone_tool/ardrone_tool.h \
|
||||
../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h ../ATcodec/ATcodec_api.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
/usr/include/pthread.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../ATcodec/ATcodec.h \
|
||||
../ATcodec/ATcodec_Memory.h ../ATcodec/ATcodec_Error.h \
|
||||
../ATcodec/ATcodec_Tree.h ../ATcodec/ATcodec_Buffer.h \
|
||||
../..//Soft/Common/navdata_common.h ../..//Soft/Common/config.h \
|
||||
../..//Soft/Common/generated_custom.h ../..//Soft/Common/autoconf.h \
|
||||
../..//Soft/Common/vision_common.h ../..//Soft/Lib/Maths/maths.h \
|
||||
/usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/string.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/string3.h /usr/include/bits/waitflags.h \
|
||||
/usr/include/bits/waitstatus.h /usr/include/sys/types.h \
|
||||
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/sigset.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/alloca.h /usr/include/bits/stdlib.h \
|
||||
../..//Soft/Lib/Maths/quaternions.h ../..//Soft/Common/led_animation.h \
|
||||
../..//Soft/Common/config_keys.h ../../VLIB/../VLIB/video_codec.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../..//Soft/Lib/ardrone_tool/UI/ardrone_tool_ui.h
|
||||
+68
@@ -0,0 +1,68 @@
|
||||
ardrone_tool_ui.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/UI/ardrone_tool_ui.c.d: ../..//Soft/Lib/ardrone_tool/UI/ardrone_tool_ui.c \
|
||||
../..//Soft/Common/config.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../..//Soft/Common/generated_custom.h \
|
||||
../..//Soft/Common/autoconf.h ../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h ../ATcodec/ATcodec_api.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
/usr/include/pthread.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../ATcodec/ATcodec.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
../ATcodec/ATcodec_Memory.h ../ATcodec/ATcodec_Error.h \
|
||||
../ATcodec/ATcodec_Tree.h ../ATcodec/ATcodec_Buffer.h \
|
||||
../..//Soft/Common/navdata_common.h ../..//Soft/Common/vision_common.h \
|
||||
../..//Soft/Lib/Maths/maths.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../..//Soft/Lib/Maths/quaternions.h \
|
||||
../..//Soft/Common/led_animation.h ../..//Soft/Common/config_keys.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/stdio.h /usr/include/libio.h \
|
||||
/usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../..//Soft/Lib/ardrone_tool/UI/ardrone_input.h \
|
||||
../..//Soft/Lib/ardrone_tool/ardrone_tool.h \
|
||||
../..//Soft/Lib/ardrone_tool/UI/ardrone_tool_ui.h
|
||||
+50
@@ -0,0 +1,50 @@
|
||||
video_com_stage.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Video/video_com_stage.c.d: ../..//Soft/Lib/ardrone_tool/Video/video_com_stage.c \
|
||||
../..//Soft/Common/config.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../..//Soft/Common/generated_custom.h \
|
||||
../..//Soft/Common/autoconf.h ../VP_Os/vp_os_print.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_delay.h \
|
||||
../..//Soft/Lib/ardrone_tool/Video/video_com_stage.h ../VP_Api/vp_api.h \
|
||||
../VP_Os/vp_os_signal.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_config.h \
|
||||
../VP_Api/vp_api_stage.h ../VP_Api/vp_api_supervisor.h \
|
||||
../VP_Com/vp_com.h ../VP_Api/vp_api_thread_helper.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
../VP_Com/vp_com_socket.h /usr/include/sys/socket.h \
|
||||
/usr/include/sys/uio.h /usr/include/bits/uio.h \
|
||||
/usr/include/bits/socket.h /usr/include/bits/sockaddr.h \
|
||||
/usr/include/asm/socket.h /usr/include/asm-generic/socket.h \
|
||||
/usr/include/asm/sockios.h /usr/include/asm-generic/sockios.h \
|
||||
/usr/include/bits/socket2.h /usr/include/sys/ioctl.h \
|
||||
/usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \
|
||||
/usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \
|
||||
/usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \
|
||||
/usr/include/bits/ioctl-types.h /usr/include/netinet/in.h \
|
||||
/usr/include/bits/in.h /usr/include/netinet/tcp.h /usr/include/unistd.h \
|
||||
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
|
||||
/usr/include/bits/confname.h /usr/include/getopt.h \
|
||||
/usr/include/bits/unistd.h
|
||||
+79
@@ -0,0 +1,79 @@
|
||||
video_stage.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Video/video_stage.c.d: ../..//Soft/Lib/ardrone_tool/Video/video_stage.c \
|
||||
../..//Soft/Lib/ardrone_tool/Video/video_stage.h ../VP_Api/vp_api.h \
|
||||
../VP_Os/vp_os_signal.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
/usr/include/pthread.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_config.h \
|
||||
../VP_Api/vp_api_stage.h ../VP_Api/vp_api_supervisor.h \
|
||||
../VP_Api/vp_api_error.h ../VP_Os/vp_os_error_handling.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../VP_Os/vp_os_print.h ../VP_Os/vp_os_malloc.h /usr/include/assert.h \
|
||||
../../VLIB/../VLIB/Stages/vlib_stage_decode.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h ../VP_Stages/vp_stages_yuv2rgb.h \
|
||||
../..//Soft/Lib/ardrone_tool/ardrone_tool.h \
|
||||
../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h ../ATcodec/ATcodec_api.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
../ATcodec/ATcodec.h ../ATcodec/ATcodec_Memory.h \
|
||||
../ATcodec/ATcodec_Error.h ../ATcodec/ATcodec_Tree.h \
|
||||
../ATcodec/ATcodec_Buffer.h ../..//Soft/Common/navdata_common.h \
|
||||
../..//Soft/Common/config.h ../..//Soft/Common/generated_custom.h \
|
||||
../..//Soft/Common/autoconf.h ../..//Soft/Common/vision_common.h \
|
||||
../..//Soft/Lib/Maths/maths.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../..//Soft/Lib/Maths/quaternions.h ../..//Soft/Common/led_animation.h \
|
||||
../..//Soft/Common/config_keys.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_com.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_serial.h ../VP_Com/vp_com.h \
|
||||
../VP_Api/vp_api_thread_helper.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_wifi.h \
|
||||
../..//Soft/Lib/ardrone_tool/Video/video_com_stage.h
|
||||
+64
@@ -0,0 +1,64 @@
|
||||
video_stage_ffmpeg_recorder.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Video/video_stage_ffmpeg_recorder.c.d: \
|
||||
../..//Soft/Lib/ardrone_tool/Video/video_stage_ffmpeg_recorder.c \
|
||||
../..//Soft/Common/generated_custom.h /usr/include/stdlib.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sys/types.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/time.h /usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/sigset.h /usr/include/bits/time.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/alloca.h /usr/include/bits/stdlib.h /usr/include/stdio.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/string.h /usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/bits/string3.h \
|
||||
/usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h /usr/include/libavformat/avformat.h \
|
||||
/usr/include/libavcodec/avcodec.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/inttypes.h /usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
/usr/include/libavformat/avio.h /usr/include/libavutil/common.h \
|
||||
/usr/include/libswscale/swscale.h /usr/include/libavfilter/avfilter.h \
|
||||
/usr/include/libavcodec/opt.h /usr/include/libavutil/rational.h \
|
||||
/usr/include/libavcodec/avcodec.h /usr/include/unistd.h \
|
||||
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
|
||||
/usr/include/bits/confname.h /usr/include/getopt.h \
|
||||
/usr/include/bits/unistd.h /usr/include/sys/stat.h \
|
||||
/usr/include/bits/stat.h /usr/include/fcntl.h /usr/include/bits/fcntl.h \
|
||||
/usr/include/bits/fcntl2.h /usr/include/sys/time.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h ../VP_Os/linux/intrin.h \
|
||||
../VP_Api/vp_api_picture.h ../..//Soft/Common/config.h \
|
||||
../..//Soft/Common/autoconf.h \
|
||||
../..//Soft/Lib/ardrone_tool/Video/video_stage_ffmpeg_recorder.h \
|
||||
../VP_Api/vp_api.h ../VP_Os/vp_os_signal.h \
|
||||
..//VP_Os/linux/vp_os_signal_dep.h /usr/include/pthread.h \
|
||||
/usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_config.h \
|
||||
../VP_Api/vp_api_stage.h ../VP_Api/vp_api_supervisor.h \
|
||||
../..//Soft/Lib/ardrone_tool/Video/video_stage_recorder.h
|
||||
+55
@@ -0,0 +1,55 @@
|
||||
video_stage_recorder.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Video/video_stage_recorder.c.d: \
|
||||
../..//Soft/Lib/ardrone_tool/Video/video_stage_recorder.c \
|
||||
/usr/include/time.h /usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/bits/time.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/xlocale.h \
|
||||
/usr/include/sys/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/string3.h /usr/include/bits/waitflags.h \
|
||||
/usr/include/bits/waitstatus.h /usr/include/sys/types.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/alloca.h /usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/libavutil/attributes.h /usr/include/libavutil/mem.h \
|
||||
/usr/include/libavutil/error.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/mathematics.h /usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../..//Soft/Common/config.h ../..//Soft/Common/generated_custom.h \
|
||||
../..//Soft/Common/autoconf.h \
|
||||
../..//Soft/Lib/ardrone_tool/Video/video_stage_recorder.h \
|
||||
../VP_Api/vp_api.h ../VP_Os/vp_os_signal.h \
|
||||
..//VP_Os/linux/vp_os_signal_dep.h /usr/include/pthread.h \
|
||||
/usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_config.h \
|
||||
../VP_Api/vp_api_stage.h ../VP_Api/vp_api_supervisor.h
|
||||
+66
@@ -0,0 +1,66 @@
|
||||
ardrone_api.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/ardrone_api.c.d: ../..//Soft/Lib/ardrone_tool/ardrone_api.c \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../..//Soft/Common/config.h ../..//Soft/Common/generated_custom.h \
|
||||
../..//Soft/Common/autoconf.h ../..//Soft/Common/at_msgs_ids.h \
|
||||
../ATcodec/ATcodec_api.h ../VP_Os/vp_os_thread.h \
|
||||
..//VP_Os/linux/vp_os_thread_dep.h /usr/include/pthread.h \
|
||||
/usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/bits/setjmp.h ../ATcodec/ATcodec.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
../ATcodec/ATcodec_Memory.h ../ATcodec/ATcodec_Error.h \
|
||||
../ATcodec/ATcodec_Tree.h ../ATcodec/ATcodec_Buffer.h \
|
||||
../..//Soft/Common/at_msgs.h ../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h \
|
||||
../..//Soft/Common/navdata_common.h ../..//Soft/Common/vision_common.h \
|
||||
../..//Soft/Lib/Maths/maths.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../..//Soft/Lib/Maths/quaternions.h ../..//Soft/Common/led_animation.h \
|
||||
../..//Soft/Common/config_keys.h ../../VLIB/../VLIB/video_codec.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/stdio.h /usr/include/libio.h \
|
||||
/usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/libavutil/attributes.h /usr/include/libavutil/mem.h \
|
||||
/usr/include/libavutil/error.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/mathematics.h /usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../..//Soft/Lib/ardrone_tool/ardrone_tool.h
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
ardrone_time.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/ardrone_time.c.d: ../..//Soft/Lib/ardrone_tool/ardrone_time.c \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../..//Soft/Lib/ardrone_tool/ardrone_time.h /usr/include/sys/time.h
|
||||
+86
@@ -0,0 +1,86 @@
|
||||
ardrone_tool.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/ardrone_tool.c.d: ../..//Soft/Lib/ardrone_tool/ardrone_tool.c \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h ../VP_Os/vp_os_print.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../VP_Api/vp_api_thread_helper.h ../VP_Os/vp_os_thread.h \
|
||||
..//VP_Os/linux/vp_os_thread_dep.h /usr/include/pthread.h \
|
||||
/usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/bits/setjmp.h ../..//Soft/Lib/ardrone_tool/ardrone_tool.h \
|
||||
../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h ../ATcodec/ATcodec_api.h \
|
||||
../ATcodec/ATcodec.h ../ATcodec/ATcodec_Memory.h \
|
||||
../ATcodec/ATcodec_Error.h ../ATcodec/ATcodec_Tree.h \
|
||||
../ATcodec/ATcodec_Buffer.h ../..//Soft/Common/navdata_common.h \
|
||||
../..//Soft/Common/config.h ../..//Soft/Common/generated_custom.h \
|
||||
../..//Soft/Common/autoconf.h ../..//Soft/Common/vision_common.h \
|
||||
../..//Soft/Lib/Maths/maths.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../..//Soft/Lib/Maths/quaternions.h ../..//Soft/Common/led_animation.h \
|
||||
../..//Soft/Common/config_keys.h ../../VLIB/../VLIB/video_codec.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../..//Soft/Lib/ardrone_tool/ardrone_time.h /usr/include/sys/time.h \
|
||||
../..//Soft/Lib/ardrone_tool/ardrone_tool_configuration.h \
|
||||
../VP_Os/vp_os_signal.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control_ack.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control_configuration.h \
|
||||
../..//Soft/Lib/iniparser3.0b/src/iniparser.h \
|
||||
../..//Soft/Lib/iniparser3.0b/src/dictionary.h /usr/include/unistd.h \
|
||||
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
|
||||
/usr/include/bits/confname.h /usr/include/getopt.h \
|
||||
/usr/include/bits/unistd.h \
|
||||
../..//Soft/Lib/ardrone_tool/Navdata/ardrone_navdata_client.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_navdata_control.h \
|
||||
../..//Soft/Lib/ardrone_tool/Navdata/ardrone_general_navdata.h \
|
||||
../..//Soft/Lib/ardrone_tool/UI/ardrone_input.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_com.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_serial.h ../VP_Com/vp_com.h \
|
||||
../..//Soft/Lib/ardrone_tool/Com/config_wifi.h \
|
||||
../..//Soft/Lib/utils/ardrone_gen_ids.h /usr/include/locale.h \
|
||||
/usr/include/bits/locale.h
|
||||
+77
@@ -0,0 +1,77 @@
|
||||
ardrone_tool_configuration.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/ardrone_tool_configuration.c.d: \
|
||||
../..//Soft/Lib/ardrone_tool/ardrone_tool_configuration.c \
|
||||
../..//Soft/Lib/ardrone_tool/ardrone_tool_configuration.h \
|
||||
../..//Soft/Common/ardrone_api.h \
|
||||
../..//Soft/Common/ardrone_common_config.h ../ATcodec/ATcodec_api.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Os/vp_os_thread.h \
|
||||
..//VP_Os/linux/vp_os_thread_dep.h /usr/include/pthread.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../ATcodec/ATcodec.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
../ATcodec/ATcodec_Memory.h ../ATcodec/ATcodec_Error.h \
|
||||
../ATcodec/ATcodec_Tree.h ../ATcodec/ATcodec_Buffer.h \
|
||||
../..//Soft/Common/navdata_common.h ../..//Soft/Common/config.h \
|
||||
../..//Soft/Common/generated_custom.h ../..//Soft/Common/autoconf.h \
|
||||
../..//Soft/Common/vision_common.h ../..//Soft/Lib/Maths/maths.h \
|
||||
/usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/navdata_keys.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../..//Soft/Lib/Maths/quaternions.h \
|
||||
../..//Soft/Common/led_animation.h ../..//Soft/Common/config_keys.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/stdio.h /usr/include/libio.h \
|
||||
/usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h ../VP_Os/vp_os_signal.h \
|
||||
..//VP_Os/linux/vp_os_signal_dep.h ../VP_Api/vp_api_thread_helper.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control_ack.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control.h \
|
||||
../..//Soft/Lib/ardrone_tool/Control/ardrone_control_configuration.h \
|
||||
../..//Soft/Lib/iniparser3.0b/src/iniparser.h \
|
||||
../..//Soft/Lib/iniparser3.0b/src/dictionary.h /usr/include/unistd.h \
|
||||
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
|
||||
/usr/include/bits/confname.h /usr/include/getopt.h \
|
||||
/usr/include/bits/unistd.h ../..//Soft/Lib/ardrone_tool/ardrone_tool.h
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
config_keys.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/config_keys.c.d: ../..//Soft/Lib/ardrone_tool/config_keys.c \
|
||||
../..//Soft/Lib/Maths/maths.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h /usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../..//Soft/Common/config_keys.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/stdio.h /usr/include/libio.h \
|
||||
/usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/iniparser3.0b/src/iniparser.o ../..//Soft/Lib/iniparser3.0b/src/iniparser.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/iniparser3.0b/src/dictionary.o ../..//Soft/Lib/iniparser3.0b/src/dictionary.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Maths/filter.o ../..//Soft/Lib/Maths/filter.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Maths/maths.o ../..//Soft/Lib/Maths/maths.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Maths/matrices.o ../..//Soft/Lib/Maths/matrices.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Maths/matrix3d.o ../..//Soft/Lib/Maths/matrix3d.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Maths/quaternions.o ../..//Soft/Lib/Maths/quaternions.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Maths/time.o ../..//Soft/Lib/Maths/time.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Maths/vision_math.o ../..//Soft/Lib/Maths/vision_math.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Navdata/navdata.o ../..//Soft/Lib/ardrone_tool/Navdata/navdata.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/config_keys.o ../..//Soft/Lib/ardrone_tool/config_keys.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/utils/ardrone_crc_32.o ../..//Soft/Lib/utils/ardrone_crc_32.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/utils/ardrone_gen_ids.o ../..//Soft/Lib/utils/ardrone_gen_ids.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/utils/ardrone_ftp.o ../..//Soft/Lib/utils/ardrone_ftp.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/AT/ardrone_at_mutex.o ../..//Soft/Lib/ardrone_tool/AT/ardrone_at_mutex.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Control/ardrone_control_soft_update.o ../..//Soft/Lib/ardrone_tool/Control/ardrone_control_soft_update.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Control/ardrone_control_configuration.o ../..//Soft/Lib/ardrone_tool/Control/ardrone_control_configuration.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Control/ardrone_control_ack.o ../..//Soft/Lib/ardrone_tool/Control/ardrone_control_ack.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Navdata/ardrone_navdata_file.o ../..//Soft/Lib/ardrone_tool/Navdata/ardrone_navdata_file.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Navdata/ardrone_general_navdata.o ../..//Soft/Lib/ardrone_tool/Navdata/ardrone_general_navdata.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/UI/ardrone_input.o ../..//Soft/Lib/ardrone_tool/UI/ardrone_input.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/UI/ardrone_tool_ui.o ../..//Soft/Lib/ardrone_tool/UI/ardrone_tool_ui.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/ardrone_time.o ../..//Soft/Lib/ardrone_tool/ardrone_time.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/ardrone_api.o ../..//Soft/Lib/ardrone_tool/ardrone_api.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/ardrone_tool_configuration.o ../..//Soft/Lib/ardrone_tool/ardrone_tool_configuration.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/ardrone_tool.o ../..//Soft/Lib/ardrone_tool/ardrone_tool.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Com/config_wifi.o ../..//Soft/Lib/ardrone_tool/Com/config_wifi.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Video/video_stage.o ../..//Soft/Lib/ardrone_tool/Video/video_stage.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Video/video_com_stage.o ../..//Soft/Lib/ardrone_tool/Video/video_com_stage.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Control/ardrone_control.o ../..//Soft/Lib/ardrone_tool/Control/ardrone_control.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Control/ardrone_navdata_control.o ../..//Soft/Lib/ardrone_tool/Control/ardrone_navdata_control.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Navdata/ardrone_navdata_client.o ../..//Soft/Lib/ardrone_tool/Navdata/ardrone_navdata_client.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Video/video_stage_recorder.o ../..//Soft/Lib/ardrone_tool/Video/video_stage_recorder.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ardrone_tool/Video/video_stage_ffmpeg_recorder.o ../..//Soft/Lib/ardrone_tool/Video/video_stage_ffmpeg_recorder.c
|
||||
+24
@@ -0,0 +1,24 @@
|
||||
dictionary.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/iniparser3.0b/src/dictionary.c.d: ../..//Soft/Lib/iniparser3.0b/src/dictionary.c \
|
||||
../..//Soft/Lib/iniparser3.0b/src/dictionary.h /usr/include/stdio.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
|
||||
/usr/include/bits/waitstatus.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h /usr/include/xlocale.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/unistd.h \
|
||||
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
|
||||
/usr/include/bits/confname.h /usr/include/getopt.h \
|
||||
/usr/include/bits/unistd.h
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
iniparser.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/iniparser3.0b/src/iniparser.c.d: ../..//Soft/Lib/iniparser3.0b/src/iniparser.c \
|
||||
/usr/include/ctype.h /usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h \
|
||||
../..//Soft/Lib/iniparser3.0b/src/iniparser.h /usr/include/stdio.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
|
||||
/usr/include/bits/waitstatus.h /usr/include/sys/types.h \
|
||||
/usr/include/time.h /usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/sigset.h /usr/include/bits/time.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/alloca.h /usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h \
|
||||
../..//Soft/Lib/iniparser3.0b/src/dictionary.h /usr/include/unistd.h \
|
||||
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
|
||||
/usr/include/bits/confname.h /usr/include/getopt.h \
|
||||
/usr/include/bits/unistd.h ../VP_Os/vp_os_print.h \
|
||||
../..//Soft/Lib/Maths/matrices.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../..//Soft/Common/config_keys.h ../..//Soft/Lib/Maths/maths.h \
|
||||
/usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/float.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
ardrone_crc_32.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/utils/ardrone_crc_32.c.d: ../..//Soft/Lib/utils/ardrone_crc_32.c \
|
||||
../..//Soft/Lib/utils/ardrone_crc_32.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h
|
||||
+48
@@ -0,0 +1,48 @@
|
||||
ardrone_ftp.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/utils/ardrone_ftp.c.d: ../..//Soft/Lib/utils/ardrone_ftp.c \
|
||||
../..//Soft/Lib/utils/ardrone_ftp.h ../VP_Com/vp_com_socket.h \
|
||||
../VP_Com/vp_com.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Os/vp_os_signal.h \
|
||||
..//VP_Os/linux/vp_os_signal_dep.h /usr/include/pthread.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_thread_helper.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/netdb.h /usr/include/netinet/in.h /usr/include/sys/socket.h \
|
||||
/usr/include/sys/uio.h /usr/include/sys/types.h \
|
||||
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/sigset.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/uio.h /usr/include/bits/socket.h \
|
||||
/usr/include/bits/sockaddr.h /usr/include/asm/socket.h \
|
||||
/usr/include/asm-generic/socket.h /usr/include/asm/sockios.h \
|
||||
/usr/include/asm-generic/sockios.h /usr/include/bits/socket2.h \
|
||||
/usr/include/bits/in.h /usr/include/rpc/netdb.h \
|
||||
/usr/include/bits/siginfo.h /usr/include/bits/netdb.h \
|
||||
/usr/include/unistd.h /usr/include/bits/posix_opt.h \
|
||||
/usr/include/bits/environments.h /usr/include/bits/confname.h \
|
||||
/usr/include/getopt.h /usr/include/bits/unistd.h /usr/include/sys/stat.h \
|
||||
/usr/include/bits/stat.h /usr/include/fcntl.h /usr/include/bits/fcntl.h \
|
||||
/usr/include/bits/fcntl2.h ../VP_Os/vp_os_malloc.h /usr/include/assert.h \
|
||||
/usr/include/string.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/string3.h /usr/include/bits/waitflags.h \
|
||||
/usr/include/bits/waitstatus.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
ardrone_gen_ids.o ../../Soft/Build/targets_versions/ardrone_lib_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/utils/ardrone_gen_ids.c.d: ../..//Soft/Lib/utils/ardrone_gen_ids.c \
|
||||
../..//Soft/Lib/utils/ardrone_gen_ids.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../..//Soft/Lib/utils/ardrone_crc_32.h \
|
||||
/usr/include/string.h /usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h /usr/include/stdio.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
p263_codec.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P263/p263_codec.c.d: ../../VLIB/P263/p263_codec.c \
|
||||
../../VLIB/../VLIB/Platform/video_utils.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/Platform/x86/video_utils.h \
|
||||
..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h \
|
||||
../../VLIB/../VLIB/Platform/video_config.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_config.h \
|
||||
../../VLIB/../VLIB/video_quantizer.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h ../../VLIB/../VLIB/video_dct.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h ../../VLIB/../VLIB/video_mem32.h \
|
||||
../../VLIB/P263/p263_codec.h ../../VLIB/../VLIB/video_codec.h \
|
||||
../../VLIB/P263/p263_layers.h ../../VLIB/P263/p263_huffman.h \
|
||||
../../VLIB/../VLIB/video_huffman.h ../VP_Os/vp_os_malloc.h \
|
||||
/usr/include/assert.h ../VP_Os/vp_os_assert.h
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
p263_gob_layer.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P263/p263_gob_layer.c.d: ../../VLIB/P263/p263_gob_layer.c \
|
||||
../../VLIB/../VLIB/video_packetizer.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h ../../VLIB/P263/p263_codec.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/P263/p263_layers.h \
|
||||
../../VLIB/P263/p263_huffman.h ../../VLIB/../VLIB/video_huffman.h
|
||||
+51
@@ -0,0 +1,51 @@
|
||||
p263_huffman.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P263/p263_huffman.c.d: ../../VLIB/P263/p263_huffman.c \
|
||||
../../VLIB/P263/p263_huffman.h ../../VLIB/../VLIB/video_huffman.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h
|
||||
+52
@@ -0,0 +1,52 @@
|
||||
p263_mb_layer.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P263/p263_mb_layer.c.d: ../../VLIB/P263/p263_mb_layer.c ../VP_Os/vp_os_assert.h \
|
||||
/usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h ../../VLIB/../VLIB/video_packetizer.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
|
||||
/usr/include/bits/waitstatus.h /usr/include/sys/types.h \
|
||||
/usr/include/time.h /usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/sigset.h /usr/include/bits/time.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/alloca.h /usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h ../../VLIB/P263/p263_codec.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/P263/p263_layers.h \
|
||||
../../VLIB/P263/p263_huffman.h ../../VLIB/../VLIB/video_huffman.h
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
p263_picture_layer.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P263/p263_picture_layer.c.d: ../../VLIB/P263/p263_picture_layer.c \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/libavutil/attributes.h /usr/include/libavutil/mem.h \
|
||||
/usr/include/libavutil/error.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/mathematics.h /usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h ../../VLIB/P263/p263_codec.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/P263/p263_layers.h \
|
||||
../../VLIB/P263/p263_huffman.h ../../VLIB/../VLIB/video_huffman.h
|
||||
+54
@@ -0,0 +1,54 @@
|
||||
p264.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264.c.d: ../../VLIB/P264/p264.c ../../VLIB/../VLIB/Platform/video_utils.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/Platform/x86/video_utils.h \
|
||||
..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h ../VP_Os/vp_os_assert.h \
|
||||
/usr/include/assert.h ../../VLIB/../VLIB/P264/p264.h
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
p264_Qp.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_Qp.c.d: ../../VLIB/P264/p264_Qp.c ../../VLIB/../VLIB/P264/p264_Qp.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h
|
||||
+60
@@ -0,0 +1,60 @@
|
||||
p264_codec.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_codec.c.d: ../../VLIB/P264/p264_codec.c \
|
||||
../../VLIB/../VLIB/Platform/video_utils.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/Platform/x86/video_utils.h \
|
||||
..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h \
|
||||
../../VLIB/../VLIB/Platform/video_config.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_config.h \
|
||||
../../VLIB/P264/video_p264.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/video_picture.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../../VLIB/../VLIB/video_gob.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h ../../VLIB/P264/p264_codec.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/P264/p264_layers.h \
|
||||
../../VLIB/../VLIB/video_quantizer.h ../VP_Os/vp_os_malloc.h \
|
||||
/usr/include/assert.h ../VP_Os/vp_os_assert.h \
|
||||
../VP_Os/elinux/vp_os_ltt.h ../VP_Os/vp_os_print.h
|
||||
+52
@@ -0,0 +1,52 @@
|
||||
p264_gob_layer.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_gob_layer.c.d: ../../VLIB/P264/p264_gob_layer.c \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h ../../VLIB/P264/p264_codec.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/P264/p264_layers.h
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
p264_inter_mc.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_inter_mc.c.d: ../../VLIB/P264/p264_inter_mc.c \
|
||||
../../VLIB/../VLIB/P264/p264_inter_mc.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_assert.h
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
p264_intra_pred.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_intra_pred.c.d: ../../VLIB/P264/p264_intra_pred.c \
|
||||
../../VLIB/../VLIB/P264/p264_intra_pred.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_print.h /usr/include/stdio.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
p264_mb_layer.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_mb_layer.c.d: ../../VLIB/P264/p264_mb_layer.c \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h \
|
||||
../../VLIB/../VLIB/Platform/video_utils.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils.h ..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h ../VP_Os/vp_os_assert.h \
|
||||
../../VLIB/P264/p264_codec.h ../../VLIB/../VLIB/video_codec.h \
|
||||
../../VLIB/P264/p264_layers.h ../../VLIB/P264/p264.h \
|
||||
../../VLIB/P264/p264_common.h ../VP_Os/vp_os_print.h
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
p264_merge.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_merge.c.d: ../../VLIB/P264/p264_merge.c \
|
||||
../../VLIB/../VLIB/P264/p264_merge.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
p264_picture_layer.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_picture_layer.c.d: ../../VLIB/P264/p264_picture_layer.c \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h ../../VLIB/P264/p264_codec.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/P264/p264_layers.h \
|
||||
../VP_Os/vp_os_print.h
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
p264_transform.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_transform.c.d: ../../VLIB/P264/p264_transform.c \
|
||||
../../VLIB/../VLIB/P264/p264_transform.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
p264_zigzag.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_zigzag.c.d: ../../VLIB/P264/p264_zigzag.c \
|
||||
../../VLIB/../VLIB/P264/p264_zigzag.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
video_p264.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/video_p264.c.d: ../../VLIB/P264/video_p264.c \
|
||||
../../VLIB/../VLIB/P264/video_p264.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/video_picture.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../../VLIB/../VLIB/video_gob.h \
|
||||
../../VLIB/../VLIB/P264/p264_transform.h \
|
||||
../../VLIB/../VLIB/P264/p264_merge.h \
|
||||
../../VLIB/../VLIB/Platform/video_utils.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils.h ..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h \
|
||||
../../VLIB/P264/p264_inter_mc.h ../../VLIB/P264/p264_common.h \
|
||||
../../VLIB/P264/p264_intra_pred.h ../../VLIB/P264/p264_zigzag.h \
|
||||
../../VLIB/P264/p264_Qp.h ../VP_Os/vp_os_print.h
|
||||
+60
@@ -0,0 +1,60 @@
|
||||
uvlc_codec.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Platform/x86/UVLC/uvlc_codec.c.d: ../../VLIB/Platform/x86/UVLC/uvlc_codec.c \
|
||||
../../VLIB/../VLIB/Platform/video_utils.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/Platform/x86/video_utils.h \
|
||||
..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h \
|
||||
../../VLIB/../VLIB/Platform/video_config.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_config.h \
|
||||
../../VLIB/../VLIB/video_quantizer.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h ../../VLIB/../VLIB/video_dct.h \
|
||||
../../VLIB/../VLIB/video_mem32.h ../../VLIB/../VLIB/video_packetizer.h \
|
||||
../../VLIB/../VLIB/UVLC/uvlc_codec.h ../../VLIB/../VLIB/video_codec.h \
|
||||
../../VLIB/../VLIB/UVLC/uvlc_layers.h ../../VLIB/../VLIB/UVLC/uvlc.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h ../VP_Os/vp_os_assert.h
|
||||
+52
@@ -0,0 +1,52 @@
|
||||
video_utils.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Platform/x86/video_utils.c.d: ../../VLIB/Platform/x86/video_utils.c \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../../VLIB/Platform/x86/video_utils.h ..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/Platform/x86/video_utils_x86.h
|
||||
+56
@@ -0,0 +1,56 @@
|
||||
vlib_stage_decode.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Stages/vlib_stage_decode.c.d: ../../VLIB/Stages/vlib_stage_decode.c \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h ../VP_Os/vp_os_print.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../../VLIB/../VLIB/Stages/vlib_stage_decode.h ../VP_Api/vp_api.h \
|
||||
../VP_Os/vp_os_signal.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_config.h \
|
||||
../VP_Api/vp_api_stage.h ../VP_Api/vp_api_supervisor.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/libavutil/attributes.h /usr/include/libavutil/mem.h \
|
||||
/usr/include/libavutil/error.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/mathematics.h /usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
vlib_stage_encode.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Stages/vlib_stage_encode.c.d: ../../VLIB/Stages/vlib_stage_encode.c \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h ../VP_Os/vp_os_print.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../../VLIB/../VLIB/Stages/vlib_stage_encode.h ../VP_Api/vp_api.h \
|
||||
../VP_Os/vp_os_signal.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_config.h \
|
||||
../VP_Api/vp_api_stage.h ../VP_Api/vp_api_supervisor.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/libavutil/attributes.h /usr/include/libavutil/mem.h \
|
||||
/usr/include/libavutil/error.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/mathematics.h /usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h
|
||||
+54
@@ -0,0 +1,54 @@
|
||||
uvlc.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/UVLC/uvlc.c.d: ../../VLIB/UVLC/uvlc.c ../../VLIB/../VLIB/Platform/video_utils.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/Platform/x86/video_utils.h \
|
||||
..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h ../VP_Os/vp_os_assert.h \
|
||||
/usr/include/assert.h ../../VLIB/../VLIB/UVLC/uvlc.h
|
||||
+59
@@ -0,0 +1,59 @@
|
||||
uvlc_codec.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/UVLC/uvlc_codec.c.d: ../../VLIB/UVLC/uvlc_codec.c \
|
||||
../../VLIB/../VLIB/Platform/video_utils.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/Platform/x86/video_utils.h \
|
||||
..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h \
|
||||
../../VLIB/../VLIB/Platform/video_config.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_config.h \
|
||||
../../VLIB/../VLIB/video_quantizer.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h ../../VLIB/../VLIB/video_dct.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h ../../VLIB/UVLC/uvlc_codec.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/UVLC/uvlc_layers.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h ../VP_Os/vp_os_assert.h
|
||||
+52
@@ -0,0 +1,52 @@
|
||||
uvlc_gob_layer.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/UVLC/uvlc_gob_layer.c.d: ../../VLIB/UVLC/uvlc_gob_layer.c \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h ../../VLIB/UVLC/uvlc_codec.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/UVLC/uvlc_layers.h
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
uvlc_mb_layer.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/UVLC/uvlc_mb_layer.c.d: ../../VLIB/UVLC/uvlc_mb_layer.c \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h \
|
||||
../../VLIB/../VLIB/Platform/video_utils.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils.h ..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h ../VP_Os/vp_os_assert.h \
|
||||
../../VLIB/UVLC/uvlc_codec.h ../../VLIB/../VLIB/video_codec.h \
|
||||
../../VLIB/UVLC/uvlc_layers.h ../../VLIB/UVLC/uvlc.h
|
||||
+52
@@ -0,0 +1,52 @@
|
||||
uvlc_picture_layer.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/UVLC/uvlc_picture_layer.c.d: ../../VLIB/UVLC/uvlc_picture_layer.c \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h ../../VLIB/UVLC/uvlc_codec.h \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/UVLC/uvlc_layers.h
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_codec.o ../../VLIB/video_codec.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_controller.o ../../VLIB/video_controller.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_mem32.o ../../VLIB/video_mem32.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_dct.o ../../VLIB/video_dct.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_huffman.o ../../VLIB/video_huffman.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_macroblock.o ../../VLIB/video_macroblock.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_packetizer.o ../../VLIB/video_packetizer.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_picture.o ../../VLIB/video_picture.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_quantizer.o ../../VLIB/video_quantizer.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P263/p263_codec.o ../../VLIB/P263/p263_codec.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P263/p263_huffman.o ../../VLIB/P263/p263_huffman.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P263/p263_mb_layer.o ../../VLIB/P263/p263_mb_layer.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P263/p263_gob_layer.o ../../VLIB/P263/p263_gob_layer.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P263/p263_picture_layer.o ../../VLIB/P263/p263_picture_layer.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_zigzag.o ../../VLIB/P264/p264_zigzag.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_transform.o ../../VLIB/P264/p264_transform.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_Qp.o ../../VLIB/P264/p264_Qp.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_intra_pred.o ../../VLIB/P264/p264_intra_pred.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_inter_mc.o ../../VLIB/P264/p264_inter_mc.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_merge.o ../../VLIB/P264/p264_merge.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_codec.o ../../VLIB/P264/p264_codec.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264.o ../../VLIB/P264/p264.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_gob_layer.o ../../VLIB/P264/p264_gob_layer.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_mb_layer.o ../../VLIB/P264/p264_mb_layer.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/p264_picture_layer.o ../../VLIB/P264/p264_picture_layer.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/P264/video_p264.o ../../VLIB/P264/video_p264.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Stages/vlib_stage_decode.o ../../VLIB/Stages/vlib_stage_decode.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Stages/vlib_stage_encode.o ../../VLIB/Stages/vlib_stage_encode.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/UVLC/uvlc_codec.o ../../VLIB/UVLC/uvlc_codec.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/UVLC/uvlc.o ../../VLIB/UVLC/uvlc.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/UVLC/uvlc_gob_layer.o ../../VLIB/UVLC/uvlc_gob_layer.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/UVLC/uvlc_mb_layer.o ../../VLIB/UVLC/uvlc_mb_layer.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/UVLC/uvlc_picture_layer.o ../../VLIB/UVLC/uvlc_picture_layer.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Platform/x86/video_utils.o ../../VLIB/Platform/x86/video_utils.c
|
||||
-E gcc -D_MOBILE -DRECORD_VIDEO -DGNU_LINUX -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -DUSE_FFMPEG -DAT_MESSAGES_HEADER="../Common/at_msgs.h" -DUSE_NEW_ATCODEC -DUSE_FFMPEG_RECORDER -Wall -Wall -O3 -DCOMPIL_MODE_PROD -DNDEBUG -D__linux__ -D__LINUX__ -DTARGET_CPU_ARM=0 -DTARGET_CPU_X86=1 -DUSE_WIFI -DUSE_VLIB -DUSE_LINUX -I../..//Soft/Common -I../..//Soft/Lib -I../../VLIB/.. -I../../VLIB/P263 -I../../VLIB/Platform/x86 -I../../Soft/Build/targets_versions/_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/include -I../ -I..//VP_Com -I..//VP_Os/linux -I..//VP_Com/linux -I/specific -c -o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/Platform/x86/UVLC/uvlc_codec.o ../../VLIB/Platform/x86/UVLC/uvlc_codec.c
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
video_codec.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_codec.c.d: ../../VLIB/video_codec.c ../../VLIB/../VLIB/video_codec.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../../VLIB/../VLIB/video_quantizer.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h \
|
||||
../../VLIB/../VLIB/Platform/video_utils.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils.h ..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h \
|
||||
../../VLIB/../VLIB/Platform/video_config.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_config.h ../VP_Os/vp_os_malloc.h \
|
||||
/usr/include/assert.h ../VP_Os/vp_os_print.h
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
video_controller.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_controller.c.d: ../../VLIB/video_controller.c ../VP_Os/vp_os_malloc.h \
|
||||
/usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../VP_Os/vp_os_assert.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/libavutil/attributes.h /usr/include/libavutil/mem.h \
|
||||
/usr/include/libavutil/error.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/mathematics.h /usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h ../../VLIB/../VLIB/video_codec.h \
|
||||
../VP_Os/vp_os_print.h ../../VLIB/../VLIB/Platform/video_config.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_config.h
|
||||
+51
@@ -0,0 +1,51 @@
|
||||
video_dct.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_dct.c.d: ../../VLIB/video_dct.c ../../VLIB/../VLIB/video_dct.h \
|
||||
../../VLIB/../VLIB/video_picture.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/Platform/video_utils.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils.h ..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h
|
||||
+56
@@ -0,0 +1,56 @@
|
||||
video_huffman.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_huffman.c.d: ../../VLIB/video_huffman.c \
|
||||
../../VLIB/../VLIB/Platform/video_utils.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/Platform/x86/video_utils.h \
|
||||
..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../../VLIB/../VLIB/video_huffman.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h
|
||||
+49
@@ -0,0 +1,49 @@
|
||||
video_macroblock.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_macroblock.c.d: ../../VLIB/video_macroblock.c \
|
||||
../../VLIB/../VLIB/video_macroblock.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/video_picture.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
video_mem32.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_mem32.c.d: ../../VLIB/video_mem32.c ../../VLIB/../VLIB/video_mem32.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../../VLIB/../VLIB/Platform/video_utils.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils.h ..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
video_packetizer.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_packetizer.c.d: ../../VLIB/video_packetizer.c \
|
||||
../../VLIB/../VLIB/video_codec.h ../../VLIB/../VLIB/video_controller.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../../VLIB/../VLIB/video_packetizer.h \
|
||||
../../VLIB/../VLIB/Platform/video_utils.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils.h ..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h \
|
||||
../../VLIB/../VLIB/Platform/video_config.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_config.h ../VP_Os/vp_os_malloc.h \
|
||||
/usr/include/assert.h
|
||||
+48
@@ -0,0 +1,48 @@
|
||||
video_picture.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_picture.c.d: ../../VLIB/video_picture.c ../VP_Os/vp_os_print.h \
|
||||
/usr/include/stdio.h /usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../../VLIB/../VLIB/Platform/video_utils.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils.h ..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h \
|
||||
../../VLIB/../VLIB/video_picture.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
|
||||
/usr/include/bits/waitstatus.h /usr/include/sys/types.h \
|
||||
/usr/include/time.h /usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/sigset.h /usr/include/bits/time.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/alloca.h /usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h ../VP_Os/vp_os_malloc.h \
|
||||
/usr/include/assert.h
|
||||
+54
@@ -0,0 +1,54 @@
|
||||
video_quantizer.o ../../Soft/Build/targets_versions/ffmpeg_Intel_PROD_MODE_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/video_quantizer.c.d: ../../VLIB/video_quantizer.c \
|
||||
../../VLIB/../VLIB/video_quantizer.h \
|
||||
../../VLIB/../VLIB/video_controller.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Api/vp_api_picture.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/common.h \
|
||||
/usr/include/ctype.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/xlocale.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||
/usr/include/bits/huge_val.h /usr/include/bits/huge_valf.h \
|
||||
/usr/include/bits/huge_vall.h /usr/include/bits/inf.h \
|
||||
/usr/include/bits/nan.h /usr/include/bits/mathdef.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathinline.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/sys_errlist.h /usr/include/bits/stdio.h \
|
||||
/usr/include/bits/stdio2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../../VLIB/../VLIB/video_picture.h \
|
||||
../../VLIB/../VLIB/video_picture_defines.h \
|
||||
../../VLIB/../VLIB/video_gob.h ../../VLIB/../VLIB/video_macroblock.h \
|
||||
../../VLIB/../VLIB/P264/p264_common.h \
|
||||
../../VLIB/../VLIB/Platform/video_utils.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils.h ..//VP_Os/linux/intrin.h \
|
||||
../../VLIB/../VLIB/Platform/x86/video_utils_x86.h
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
ATcodec.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ATcodec/ATcodec.c.d: ..//ATcodec/ATcodec.c ../VP_Os/vp_os_assert.h \
|
||||
/usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h ../VP_Os/vp_os_malloc.h \
|
||||
/usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h ../VP_Os/vp_os_print.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../ATcodec/ATcodec.h ../ATcodec/ATcodec_Memory.h \
|
||||
../ATcodec/ATcodec_Buffer.h
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
ATcodec_Buffer.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ATcodec/ATcodec_Buffer.c.d: ..//ATcodec/ATcodec_Buffer.c ../VP_Os/vp_os_assert.h \
|
||||
/usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h ../VP_Os/vp_os_malloc.h \
|
||||
/usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
..//ATcodec/ATcodec_Buffer.h
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
ATcodec_Memory.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ATcodec/ATcodec_Memory.c.d: ..//ATcodec/ATcodec_Memory.c ../VP_Os/vp_os_assert.h \
|
||||
/usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h ../ATcodec/ATcodec_Memory.h
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
ATcodec_Sorted_List.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ATcodec/ATcodec_Sorted_List.c.d: ..//ATcodec/ATcodec_Sorted_List.c \
|
||||
../VP_Os/vp_os_assert.h /usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h ../VP_Os/vp_os_malloc.h \
|
||||
/usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
..//ATcodec/ATcodec_Sorted_List.h
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
ATcodec_Tree.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ATcodec/ATcodec_Tree.c.d: ..//ATcodec/ATcodec_Tree.c ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Os/vp_os_assert.h /usr/include/assert.h \
|
||||
../VP_Os/vp_os_print.h /usr/include/stdio.h /usr/include/libio.h \
|
||||
/usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/string.h /usr/include/xlocale.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/string3.h /usr/include/bits/waitflags.h \
|
||||
/usr/include/bits/waitstatus.h /usr/include/sys/types.h \
|
||||
/usr/include/time.h /usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/sigset.h /usr/include/bits/time.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/alloca.h /usr/include/bits/stdlib.h \
|
||||
../ATcodec/ATcodec_Tree.h ../ATcodec/ATcodec_Buffer.h \
|
||||
../ATcodec/ATcodec.h ../ATcodec/ATcodec_Memory.h \
|
||||
../ATcodec/ATcodec_api.h ../VP_Os/vp_os_thread.h \
|
||||
..//VP_Os/linux/vp_os_thread_dep.h /usr/include/pthread.h \
|
||||
/usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/bits/setjmp.h ../ATcodec/ATcodec_Error.h
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
ATcodec_api.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/ATcodec/ATcodec_api.c.d: ..//ATcodec/ATcodec_api.c ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Os/vp_os_delay.h ../VP_Os/vp_os_assert.h \
|
||||
/usr/include/assert.h ../VP_Os/vp_os_malloc.h /usr/include/string.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_signal.h \
|
||||
..//VP_Os/linux/vp_os_signal_dep.h /usr/include/pthread.h \
|
||||
/usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Os/vp_os_print.h /usr/include/stdio.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../VP_Api/vp_api_thread_helper.h ../VP_Os/vp_os_thread.h \
|
||||
..//VP_Os/linux/vp_os_thread_dep.h ../ATcodec/ATcodec_api.h \
|
||||
../ATcodec/ATcodec.h ../ATcodec/ATcodec_Memory.h \
|
||||
../ATcodec/ATcodec_Error.h ../ATcodec/ATcodec_Tree.h \
|
||||
../ATcodec/ATcodec_Buffer.h
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
vp_api.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Api/vp_api.c.d: ..//VP_Api/vp_api.c ../VP_Api/vp_api.h ../VP_Os/vp_os_signal.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
/usr/include/pthread.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_config.h \
|
||||
../VP_Api/vp_api_stage.h ../VP_Api/vp_api_supervisor.h \
|
||||
../VP_Api/vp_api_error.h ../VP_Os/vp_os_error_handling.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_assert.h \
|
||||
../VP_Os/vp_os_print.h /usr/include/stdio.h /usr/include/libio.h \
|
||||
/usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
vp_api_error.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Api/vp_api_error.c.d: ..//VP_Api/vp_api_error.c ../VP_Api/vp_api_error.h \
|
||||
../VP_Os/vp_os_error_handling.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
vp_api_io_multi_stage.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Api/vp_api_io_multi_stage.c.d: ..//VP_Api/vp_api_io_multi_stage.c \
|
||||
../VP_Api/vp_api_io_multi_stage.h ../VP_Api/vp_api.h \
|
||||
../VP_Os/vp_os_signal.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
/usr/include/pthread.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_config.h \
|
||||
../VP_Api/vp_api_stage.h ../VP_Api/vp_api_supervisor.h \
|
||||
../VP_Api/vp_api_error.h ../VP_Os/vp_os_error_handling.h \
|
||||
../VP_Os/vp_os_assert.h /usr/include/assert.h
|
||||
+72
@@ -0,0 +1,72 @@
|
||||
vp_api_stage.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Api/vp_api_stage.c.d: ..//VP_Api/vp_api_stage.c ../VP_Api/vp_api_stage.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Api/vp_api_config.h \
|
||||
../VP_Api/vp_api_supervisor.h ../VP_Os/vp_os_signal.h \
|
||||
..//VP_Os/linux/vp_os_signal_dep.h /usr/include/pthread.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_error.h \
|
||||
../VP_Os/vp_os_error_handling.h ../VP_Stages/vp_stages_io_file.h \
|
||||
../VP_Api/vp_api.h /usr/include/stdio.h /usr/include/libio.h \
|
||||
/usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../VP_Stages/vp_stages_io_buffer.h ../VP_Stages/vp_stages_io_com.h \
|
||||
../VP_Com/vp_com.h ../VP_Api/vp_api_thread_helper.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
../VP_Stages/vp_stages_io_console.h ../VP_Stages/vp_stages_yuv2rgb.h \
|
||||
../VP_Api/vp_api_picture.h /usr/include/libavutil/avutil.h \
|
||||
/usr/include/libavutil/common.h /usr/include/ctype.h \
|
||||
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/math.h /usr/include/bits/huge_val.h \
|
||||
/usr/include/bits/huge_valf.h /usr/include/bits/huge_vall.h \
|
||||
/usr/include/bits/inf.h /usr/include/bits/nan.h \
|
||||
/usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \
|
||||
/usr/include/bits/mathinline.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/bits/string3.h /usr/include/libavutil/attributes.h \
|
||||
/usr/include/libavutil/mem.h /usr/include/libavutil/error.h \
|
||||
/usr/include/libavutil/avutil.h /usr/include/libavutil/mathematics.h \
|
||||
/usr/include/libavutil/rational.h \
|
||||
/usr/include/libavutil/intfloat_readwrite.h /usr/include/libavutil/log.h \
|
||||
/usr/include/libavutil/pixfmt.h /usr/include/libavutil/avconfig.h \
|
||||
../VP_Stages/vp_stages_buffer_to_picture.h \
|
||||
../VP_Stages/vp_stages_frame_pipe.h ../VP_Stages/vp_stages_o_sdl.h \
|
||||
/usr/include/SDL/SDL.h /usr/include/SDL/SDL_main.h \
|
||||
/usr/include/SDL/SDL_stdinc.h /usr/include/SDL/SDL_config.h \
|
||||
/usr/include/SDL/SDL_platform.h /usr/include/strings.h \
|
||||
/usr/include/iconv.h /usr/include/SDL/begin_code.h \
|
||||
/usr/include/SDL/close_code.h /usr/include/SDL/SDL_audio.h \
|
||||
/usr/include/SDL/SDL_error.h /usr/include/SDL/SDL_endian.h \
|
||||
/usr/include/SDL/SDL_mutex.h /usr/include/SDL/SDL_thread.h \
|
||||
/usr/include/SDL/SDL_rwops.h /usr/include/SDL/SDL_cdrom.h \
|
||||
/usr/include/SDL/SDL_cpuinfo.h /usr/include/SDL/SDL_events.h \
|
||||
/usr/include/SDL/SDL_active.h /usr/include/SDL/SDL_keyboard.h \
|
||||
/usr/include/SDL/SDL_keysym.h /usr/include/SDL/SDL_mouse.h \
|
||||
/usr/include/SDL/SDL_video.h /usr/include/SDL/SDL_joystick.h \
|
||||
/usr/include/SDL/SDL_quit.h /usr/include/SDL/SDL_loadso.h \
|
||||
/usr/include/SDL/SDL_timer.h /usr/include/SDL/SDL_version.h
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
vp_api_supervisor.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Api/vp_api_supervisor.c.d: ..//VP_Api/vp_api_supervisor.c \
|
||||
../VP_Api/vp_api_supervisor.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Os/vp_os_signal.h \
|
||||
..//VP_Os/linux/vp_os_signal_dep.h /usr/include/pthread.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_config.h ../VP_Api/vp_api.h \
|
||||
../VP_Api/vp_api_stage.h ../VP_Os/vp_os_print.h /usr/include/stdio.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_assert.h
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
vp_api_thread_helper.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Api/vp_api_thread_helper.c.d: ..//VP_Api/vp_api_thread_helper.c \
|
||||
../VP_Api/vp_api_thread_helper.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Os/vp_os_thread.h \
|
||||
..//VP_Os/linux/vp_os_thread_dep.h /usr/include/pthread.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_error.h \
|
||||
../VP_Os/vp_os_error_handling.h ../VP_Os/vp_os_print.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/string.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/string3.h
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
vp_com.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Com/linux/vp_com.c.d: ..//VP_Com/linux/vp_com.c ../VP_Com/vp_com.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Os/vp_os_signal.h \
|
||||
..//VP_Os/linux/vp_os_signal_dep.h /usr/include/pthread.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_thread_helper.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
../VP_Com/vp_com_socket.h ../VP_Com/vp_com_error.h \
|
||||
../VP_Os/vp_os_error_handling.h ../VP_Api/vp_api_error.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_assert.h \
|
||||
../VP_Os/vp_os_print.h /usr/include/stdio.h /usr/include/libio.h \
|
||||
/usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
..//VP_Com/vp_com_wifi.h
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
vp_com_config_itf.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Com/linux/vp_com_config_itf.c.d: ..//VP_Com/linux/vp_com_config_itf.c \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h ../VP_Os/vp_os_print.h \
|
||||
/usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../VP_Com/linux/vp_com_config_itf.h /usr/include/sys/socket.h \
|
||||
/usr/include/sys/uio.h /usr/include/bits/uio.h \
|
||||
/usr/include/bits/socket.h /usr/include/bits/sockaddr.h \
|
||||
/usr/include/asm/socket.h /usr/include/asm-generic/socket.h \
|
||||
/usr/include/asm/sockios.h /usr/include/asm-generic/sockios.h \
|
||||
/usr/include/bits/socket2.h /usr/include/sys/ioctl.h \
|
||||
/usr/include/bits/ioctls.h /usr/include/asm/ioctls.h \
|
||||
/usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \
|
||||
/usr/include/asm/ioctl.h /usr/include/asm-generic/ioctl.h \
|
||||
/usr/include/bits/ioctl-types.h /usr/include/net/if.h \
|
||||
/usr/include/netinet/in.h /usr/include/bits/in.h /usr/include/fcntl.h \
|
||||
/usr/include/bits/fcntl.h /usr/include/bits/stat.h \
|
||||
/usr/include/bits/fcntl2.h /usr/include/arpa/inet.h \
|
||||
/usr/include/unistd.h /usr/include/bits/posix_opt.h \
|
||||
/usr/include/bits/environments.h /usr/include/bits/confname.h \
|
||||
/usr/include/getopt.h /usr/include/bits/unistd.h
|
||||
+41
@@ -0,0 +1,41 @@
|
||||
vp_com_serial.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Com/linux/vp_com_serial.c.d: ..//VP_Com/linux/vp_com_serial.c /usr/include/stdio.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/unistd.h /usr/include/bits/posix_opt.h \
|
||||
/usr/include/bits/environments.h /usr/include/bits/confname.h \
|
||||
/usr/include/getopt.h /usr/include/bits/unistd.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/sigset.h /usr/include/bits/time.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/sys/stat.h /usr/include/bits/stat.h /usr/include/fcntl.h \
|
||||
/usr/include/bits/fcntl.h /usr/include/bits/fcntl2.h \
|
||||
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
../VP_Com/vp_com.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../VP_Os/vp_os_signal.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/setjmp.h \
|
||||
../VP_Api/vp_api_thread_helper.h ../VP_Os/vp_os_thread.h \
|
||||
..//VP_Os/linux/vp_os_thread_dep.h ../VP_Com/vp_com_error.h \
|
||||
../VP_Os/vp_os_error_handling.h ../VP_Os/vp_os_assert.h \
|
||||
/usr/include/assert.h ../VP_Os/vp_os_malloc.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/alloca.h /usr/include/bits/stdlib.h ../VP_Os/vp_os_print.h \
|
||||
../VP_Os/vp_os_delay.h ../VP_Api/vp_api_error.h \
|
||||
..//VP_Com/vp_com_serial.h
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
vp_com_wifi.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Com/linux/vp_com_wifi.c.d: ..//VP_Com/linux/vp_com_wifi.c ../VP_Com/vp_com_error.h \
|
||||
../VP_Os/vp_os_error_handling.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Com/vp_com_socket.h ../VP_Com/vp_com.h \
|
||||
../VP_Os/vp_os_signal.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
/usr/include/pthread.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_thread_helper.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
..//VP_Com/vp_com_wifi.h ..//VP_Com/linux/vp_com_config_itf.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_print.h /usr/include/stdio.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
../VP_Os/vp_os_delay.h /usr/include/netdb.h /usr/include/netinet/in.h \
|
||||
/usr/include/sys/socket.h /usr/include/sys/uio.h /usr/include/bits/uio.h \
|
||||
/usr/include/bits/socket.h /usr/include/bits/sockaddr.h \
|
||||
/usr/include/asm/socket.h /usr/include/asm-generic/socket.h \
|
||||
/usr/include/asm/sockios.h /usr/include/asm-generic/sockios.h \
|
||||
/usr/include/bits/socket2.h /usr/include/bits/in.h \
|
||||
/usr/include/rpc/netdb.h /usr/include/bits/siginfo.h \
|
||||
/usr/include/bits/netdb.h /usr/include/net/if.h
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
vp_com_wired.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Com/linux/vp_com_wired.c.d: ..//VP_Com/linux/vp_com_wired.c ../VP_Com/vp_com_error.h \
|
||||
../VP_Os/vp_os_error_handling.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Com/vp_com_socket.h ../VP_Com/vp_com.h \
|
||||
../VP_Os/vp_os_signal.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
/usr/include/pthread.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_thread_helper.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
..//VP_Com/linux/vp_com_config_itf.h ../VP_Os/vp_os_malloc.h \
|
||||
/usr/include/assert.h /usr/include/string.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/string3.h /usr/include/bits/waitflags.h \
|
||||
/usr/include/bits/waitstatus.h /usr/include/sys/types.h \
|
||||
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/sigset.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/alloca.h /usr/include/bits/stdlib.h /usr/include/netdb.h \
|
||||
/usr/include/netinet/in.h /usr/include/sys/socket.h \
|
||||
/usr/include/sys/uio.h /usr/include/bits/uio.h \
|
||||
/usr/include/bits/socket.h /usr/include/bits/sockaddr.h \
|
||||
/usr/include/asm/socket.h /usr/include/asm-generic/socket.h \
|
||||
/usr/include/asm/sockios.h /usr/include/asm-generic/sockios.h \
|
||||
/usr/include/bits/socket2.h /usr/include/bits/in.h \
|
||||
/usr/include/rpc/netdb.h /usr/include/bits/siginfo.h \
|
||||
/usr/include/bits/netdb.h /usr/include/net/if.h /usr/include/stdio.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
vp_com_error.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Com/vp_com_error.c.d: ..//VP_Com/vp_com_error.c ../VP_Com/vp_com_error.h \
|
||||
../VP_Os/vp_os_error_handling.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h
|
||||
+50
@@ -0,0 +1,50 @@
|
||||
vp_com_socket.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Com/vp_com_socket.c.d: ..//VP_Com/vp_com_socket.c ../VP_Com/vp_com_socket.h \
|
||||
../VP_Com/vp_com.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Os/vp_os_signal.h \
|
||||
..//VP_Os/linux/vp_os_signal_dep.h /usr/include/pthread.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_thread_helper.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
../VP_Com/vp_com_error.h ../VP_Os/vp_os_error_handling.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_print.h /usr/include/stdio.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/fcntl.h /usr/include/bits/fcntl.h /usr/include/bits/uio.h \
|
||||
/usr/include/bits/stat.h /usr/include/bits/fcntl2.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/sys/socket.h \
|
||||
/usr/include/sys/uio.h /usr/include/bits/socket.h \
|
||||
/usr/include/bits/sockaddr.h /usr/include/asm/socket.h \
|
||||
/usr/include/asm-generic/socket.h /usr/include/asm/sockios.h \
|
||||
/usr/include/asm-generic/sockios.h /usr/include/bits/socket2.h \
|
||||
/usr/include/sys/ioctl.h /usr/include/bits/ioctls.h \
|
||||
/usr/include/asm/ioctls.h /usr/include/asm-generic/ioctls.h \
|
||||
/usr/include/linux/ioctl.h /usr/include/asm/ioctl.h \
|
||||
/usr/include/asm-generic/ioctl.h /usr/include/bits/ioctl-types.h \
|
||||
/usr/include/netinet/in.h /usr/include/bits/in.h \
|
||||
/usr/include/netinet/tcp.h /usr/include/unistd.h \
|
||||
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
|
||||
/usr/include/bits/confname.h /usr/include/getopt.h \
|
||||
/usr/include/bits/unistd.h
|
||||
+50
@@ -0,0 +1,50 @@
|
||||
vp_com_socket_utils.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Com/vp_com_socket_utils.c.d: ..//VP_Com/vp_com_socket_utils.c \
|
||||
../VP_Com/vp_com_socket.h ../VP_Com/vp_com.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Os/vp_os_signal.h \
|
||||
..//VP_Os/linux/vp_os_signal_dep.h /usr/include/pthread.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h ../VP_Api/vp_api_thread_helper.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
../VP_Com/vp_com_error.h ../VP_Os/vp_os_error_handling.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/sys/sysmacros.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_print.h /usr/include/stdio.h \
|
||||
/usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||
/usr/include/bits/stdio.h /usr/include/bits/stdio2.h \
|
||||
/usr/include/fcntl.h /usr/include/bits/fcntl.h /usr/include/bits/uio.h \
|
||||
/usr/include/bits/stat.h /usr/include/bits/fcntl2.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h /usr/include/sys/socket.h \
|
||||
/usr/include/sys/uio.h /usr/include/bits/socket.h \
|
||||
/usr/include/bits/sockaddr.h /usr/include/asm/socket.h \
|
||||
/usr/include/asm-generic/socket.h /usr/include/asm/sockios.h \
|
||||
/usr/include/asm-generic/sockios.h /usr/include/bits/socket2.h \
|
||||
/usr/include/sys/ioctl.h /usr/include/bits/ioctls.h \
|
||||
/usr/include/asm/ioctls.h /usr/include/asm-generic/ioctls.h \
|
||||
/usr/include/linux/ioctl.h /usr/include/asm/ioctl.h \
|
||||
/usr/include/asm-generic/ioctl.h /usr/include/bits/ioctl-types.h \
|
||||
/usr/include/netinet/in.h /usr/include/bits/in.h \
|
||||
/usr/include/netinet/tcp.h /usr/include/unistd.h \
|
||||
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
|
||||
/usr/include/bits/confname.h /usr/include/getopt.h \
|
||||
/usr/include/bits/unistd.h
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
vp_os_delay.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Os/linux/vp_os_delay.c.d: ..//VP_Os/linux/vp_os_delay.c /usr/include/unistd.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/bits/confname.h /usr/include/getopt.h \
|
||||
/usr/include/bits/unistd.h ../VP_Os/vp_os_delay.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
vp_os_signal.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Os/linux/vp_os_signal.c.d: ..//VP_Os/linux/vp_os_signal.c ../VP_Os/vp_os_signal.h \
|
||||
../VP_Os/vp_os_types.h ../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h \
|
||||
..//VP_Os/linux/vp_os_serial.h /usr/include/termios.h \
|
||||
/usr/include/features.h /usr/include/bits/predefs.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/termios.h /usr/include/sys/ttydefaults.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
/usr/include/pthread.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/sched.h /usr/include/time.h \
|
||||
/usr/include/bits/sched.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/setjmp.h /usr/include/sys/time.h \
|
||||
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/sigset.h /usr/include/errno.h \
|
||||
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/errno-base.h
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
vp_os_thread.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Os/linux/vp_os_thread.c.d: ..//VP_Os/linux/vp_os_thread.c \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stdarg.h \
|
||||
/usr/include/signal.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/signum.h /usr/include/time.h \
|
||||
/usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \
|
||||
/usr/include/bits/sigcontext.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/bits/sigstack.h /usr/include/sys/ucontext.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/bits/sigthread.h \
|
||||
/usr/include/sched.h /usr/include/bits/sched.h ../VP_Os/vp_os_types.h \
|
||||
../VP_Os/vp_os.h ../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h \
|
||||
../VP_Os/vp_os_thread.h ..//VP_Os/linux/vp_os_thread_dep.h \
|
||||
/usr/include/pthread.h /usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/bits/time.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/setjmp.h \
|
||||
../VP_Os/vp_os_signal.h ..//VP_Os/linux/vp_os_signal_dep.h \
|
||||
../VP_Os/vp_os_malloc.h /usr/include/assert.h /usr/include/string.h \
|
||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/alloca.h /usr/include/bits/stdlib.h
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
vp_os_error_handling.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Os/vp_os_error_handling.c.d: ..//VP_Os/vp_os_error_handling.c \
|
||||
../VP_Os/vp_os_error_handling.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
../VP_Os/linux/intrin.h ../VP_Os/vp_os_malloc.h /usr/include/assert.h \
|
||||
/usr/include/string.h /usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
vp_os_malloc.o ../../Soft/Build/targets_versions/sdk_PROD_MODE_ffmpeg_Intel_Linux_2.6.35-27-generic_GNU_Linux_gcc_4.4.5/VP_Os/vp_os_malloc.c.d: ..//VP_Os/vp_os_malloc.c ../VP_Os/vp_os_malloc.h \
|
||||
/usr/include/assert.h /usr/include/features.h \
|
||||
/usr/include/bits/predefs.h /usr/include/sys/cdefs.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
||||
/usr/include/gnu/stubs-64.h /usr/include/string.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/4.4.5/include/stddef.h \
|
||||
/usr/include/xlocale.h /usr/include/bits/string.h \
|
||||
/usr/include/bits/string2.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/string3.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib.h ../VP_Os/vp_os_types.h ../VP_Os/vp_os.h \
|
||||
../VP_Os/vp_os_rtmon.h ..//VP_Os/linux/vp_os_serial.h \
|
||||
/usr/include/termios.h /usr/include/bits/termios.h \
|
||||
/usr/include/sys/ttydefaults.h /usr/include/stdint.h \
|
||||
/usr/include/bits/wchar.h ../VP_Os/linux/intrin.h
|
||||
Alguns arquivos não foram exibidos porque demasiados arquivos foram alterados neste diff Mostrar Mais
Referência em uma Nova Issue
Bloquear um usuário