Comparar commits
24 Commits
| Autor | SHA1 | Data | |
|---|---|---|---|
| bf71f192a9 | |||
| 4859f35a9f | |||
| 6d1f0e1c19 | |||
| 417cdc1a41 | |||
| 47eaa171f2 | |||
| 40e34df29e | |||
| 735b4e8ff6 | |||
| 4e0e594fef | |||
| bb4f21552f | |||
| 7e5d250598 | |||
| 5a83dc2bcd | |||
| ea2a500912 | |||
| c5d9e479db | |||
| 0a62fdf73b | |||
| 073b7f63c1 | |||
| 40d9f7c262 | |||
| 43a1f8c64b | |||
| 7a7ef11451 | |||
| 33a2ed8f64 | |||
| 1133c4b24a | |||
| b406a1eb8c | |||
| 7bcaec7f9f | |||
| c89514bfeb | |||
| 1c0f10d45e |
@@ -0,0 +1,66 @@
|
||||
SILENT="YES"
|
||||
|
||||
ifeq ($(SILENT), "YES")
|
||||
SILENT_MAKE=@
|
||||
REDIRECT_STDOUT=> /dev/null
|
||||
REDIRECT_STDERR=2> /dev/null
|
||||
endif
|
||||
|
||||
RELEASE_BUILD=yes
|
||||
ifeq ($(RELEASE_BUILD),yes)
|
||||
RELEASE_OPT="release"
|
||||
else
|
||||
RELEASE_OPT="debug"
|
||||
endif
|
||||
|
||||
FFMPEG_CONFIG=decoder
|
||||
|
||||
|
||||
FFMPEG_DIR_EXIST=$(shell bash -c "if [ -d ffmpeg ]; then echo \"YES\"; else echo \"NO\"; fi")
|
||||
FFMPEG_ARCHIVE=$(shell bash -c "if [ -e ffmpeg-0.8.tar.bz2 ]; then echo \"ffmpeg-0.8.tar.bz2\"; else echo \"no_ffmpeg_archive_found\"; fi")
|
||||
FFMPEG_ARCHIVE_ROOTDIR=$(shell tar tjf $(FFMPEG_ARCHIVE) $(REDIRECT_STDERR) | head -n 1)
|
||||
|
||||
ifeq "$(MAKECMDGOALS)" ""
|
||||
MAKECMDGOALS=host
|
||||
endif
|
||||
|
||||
all: extract build
|
||||
$(SILENT_MAKE)echo "Build done."
|
||||
|
||||
extract:
|
||||
ifneq "$(MAKECMDGOALS)" "clean"
|
||||
ifeq ($(FFMPEG_DIR_EXIST),YES)
|
||||
$(SILENT_MAKE)echo "Libs already extracted"
|
||||
else
|
||||
$(SILENT_MAKE)echo -n "Extracting libs ... "
|
||||
$(SILENT_MAKE)tar xjf $(FFMPEG_ARCHIVE)
|
||||
ifneq ($(FFMPEG_ARCHIVE_ROOTDIR), ffmpeg/)
|
||||
$(SILENT_MAKE)mkdir ffmpeg $(REDIRECT_STDERR)
|
||||
$(SILENT_MAKE)mv $(FFMPEG_ARCHIVE_ROOTDIR)* ffmpeg/
|
||||
$(SILENT_MAKE)rm -rf $(FFMPEG_ARCHIVE_ROOTDIR)
|
||||
endif
|
||||
$(SILENT_MAKE)tar xzf parrot_ffmpeg_build_utils.tar.gz
|
||||
$(SILENT_MAKE)echo "Done"
|
||||
endif
|
||||
endif
|
||||
|
||||
build:
|
||||
ifneq "$(MAKECMDGOALS)" "clean"
|
||||
$(SILENT_MAKE)echo "Building target $(MAKECMDGOALS)"
|
||||
$(SILENT_MAKE)cd ffmpeg && ./autoConf.bash $(MAKECMDGOALS) $(RELEASE_OPT) $(FFMPEG_CONFIG) && cd - $(REDIRECT_STDOUT)
|
||||
endif
|
||||
|
||||
clean:
|
||||
ifeq ($(FFMPEG_DIR_EXIST),YES)
|
||||
$(SILENT_MAKE)cd ffmpeg && ./autoConf.bash clean release $(REDIRECT_STDERR) ; cd - $(REDIRECT_STDOUT)
|
||||
endif
|
||||
$(SILENT_MAKE)rm -rf ffmpeg/
|
||||
$(SILENT_MAKE)rm -rf Includes/
|
||||
|
||||
ifneq "$(MAKECMDGOALS)" "clean"
|
||||
ifneq "$(MAKECMDGOALS)" "extract"
|
||||
ifneq "$(MAKECMDGOALS)" "build"
|
||||
$(MAKECMDGOALS): all
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
Arquivo binário não exibido.
Arquivo binário não exibido.
@@ -1,15 +1,9 @@
|
||||
|
||||
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)
|
||||
@@ -67,7 +61,17 @@ endif
|
||||
$(MAKECMDGOALS): build_libs $(TO_BUILD)
|
||||
|
||||
checkpackages:
|
||||
sh ./check_dependencies.sh
|
||||
ifeq ($(IPHONE_MODE),yes)
|
||||
sh $(shell pwd)/check_dependencies.sh iphone RELEASE_BUILD=$(RELEASE_BUILD) $(MAKECMDGOALS)
|
||||
else
|
||||
ifeq ($(USE_LINUX),yes)
|
||||
sh $(shell pwd)/check_dependencies.sh static RELEASE_BUILD=$(RELEASE_BUILD) $(MAKECMDGOALS)
|
||||
else
|
||||
ifeq ($(USE_ANDROID),yes)
|
||||
sh $(shell pwd)/check_dependencies.sh android_no_neon RELEASE_BUILD=$(RELEASE_BUILD) $(MAKECMDGOALS)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
define GENERIC_RULES_TEMPLATE
|
||||
build_$(1):
|
||||
@@ -78,6 +82,7 @@ $(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)
|
||||
@$(MAKE) PC_TARGET=yes USE_ARDRONE_TOOL=no TARGET=pc_ USE_MINGW32=no -C ../Lib/Build $(MAKECMDGOALS)
|
||||
|
||||
ifeq ("$(MINGW32_MODE)","yes")
|
||||
ifeq ($(shell which i586-mingw32msvc-gcc 2> /dev/null),)
|
||||
@@ -104,4 +109,3 @@ endef
|
||||
|
||||
svn_update:
|
||||
@-$(call svn_update_template,$(SDK_VERSION),ARDroneLib)
|
||||
|
||||
|
||||
@@ -3,51 +3,80 @@
|
||||
## Author : stephane.piskorski@parrot.com
|
||||
## Date : 19th,Oct. 2010
|
||||
|
||||
# Parameters :
|
||||
# $1 : target : can be 'iphone (cross compile static libs for iPhone)', 'static (static library for the host)', 'host (shared library for the host)'
|
||||
# $2 : RELEASE_BUILD=xxx
|
||||
# $3 : 'clean' if we want to clean, or nothing
|
||||
|
||||
|
||||
check()
|
||||
{
|
||||
if [ `cat ./temporary_file | grep $1 | wc -l` -eq 0 ] ; then
|
||||
if [ `cat $TEMPFILE | grep $1 | wc -l` -eq 0 ] ; then
|
||||
echo " $1";
|
||||
fi
|
||||
}
|
||||
|
||||
verify()
|
||||
{
|
||||
packages="$packages$(check $1)";
|
||||
p="$(check $1)";
|
||||
|
||||
if [ "$p" != "" ]; then
|
||||
packages="$packages $p";
|
||||
if [ "$2" != "" ];
|
||||
then messages="$messages\n $p : $2";
|
||||
else messages="$messages\n $p";
|
||||
fi;
|
||||
fi;
|
||||
}
|
||||
|
||||
TEMPFILE=`mktemp`
|
||||
|
||||
if [ "$ALL_TARGETS" != "" ] ; then
|
||||
TARGET_DIR=$ALL_TARGETS
|
||||
else
|
||||
TARGET_DIR=./targets_versions
|
||||
fi
|
||||
|
||||
SDK_PATH=`echo $0 | sed "s:/Soft/Build/check_dependencies.sh::"`
|
||||
|
||||
if [ "$1" != "iphone" ] ; then
|
||||
if [ "$3" = "cleanAll" ] ; then
|
||||
make -C $SDK_PATH/FFMPEG clean
|
||||
exit 0
|
||||
elif [ "$3" = "clean" ] ; then
|
||||
# do nothing here
|
||||
echo "" > /dev/null
|
||||
else
|
||||
make -C $SDK_PATH/FFMPEG $1 $2
|
||||
fi
|
||||
fi
|
||||
|
||||
packages="";
|
||||
messages="";
|
||||
|
||||
if [ `which uname` ] ; then
|
||||
if [ `uname -a | grep Ubuntu | wc -l` ] ; then
|
||||
if [ `which apt-get` ] ; then
|
||||
if [ "`apt-get -v | grep -o ubuntu`" != "" ] ; then
|
||||
|
||||
echo "\033[31mChecking required Ubuntu packages ...\033[0m";
|
||||
|
||||
if [ ! -e ./temporary_file ] ; then # check that the temp file does not exist
|
||||
dpkg -l > $TEMPFILE;
|
||||
|
||||
# To compile the AR.Drone project
|
||||
verify "daemontools" "Mandatory to build the AR.Drone project on Ubuntu";
|
||||
|
||||
dpkg -l > ./temporary_file;
|
||||
# To use the Wiimote in Navigation
|
||||
#verify "libcwiid1-dev";
|
||||
#verify "libbluetooth-dev";
|
||||
|
||||
#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
|
||||
# To compile Navigation
|
||||
verify "libsdl1.2-dev";
|
||||
verify "libgtk2.0-dev";
|
||||
verify "libxml2-dev";
|
||||
verify "libudev-dev";
|
||||
verify "libiw-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 "You should install the following packages to compile the AR.Drone SDK with Ubuntu:\n $messages \n";
|
||||
echo "Do you want to install them now [y/n] ?";
|
||||
read user_answer ;
|
||||
if [ "$user_answer" = "y" ]; then
|
||||
@@ -56,9 +85,7 @@ if [ `which uname` ] ; then
|
||||
else
|
||||
echo "ok.";
|
||||
fi
|
||||
|
||||
rm ./temporary_file;
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
|
||||
RELEASE_BUILD = yes
|
||||
QUIET_BUILD = yes
|
||||
VPSDK_PARALLEL_BUILD = no
|
||||
|
||||
#########################################################
|
||||
# System utility definitions (STATIC)
|
||||
@@ -39,9 +40,7 @@ $(eval $(call EXIT_IF_ERROR))
|
||||
#########################################################
|
||||
|
||||
ifeq "$(QUIET_BUILD)" "yes"
|
||||
MAKE=@make -s
|
||||
else
|
||||
MAKE=make
|
||||
export MAKEFLAGS+=-s --no-print-directory
|
||||
endif
|
||||
|
||||
COMMON_DIR:=../Common
|
||||
@@ -62,34 +61,34 @@ endif
|
||||
ifdef PC_TARGET
|
||||
SDK_FLAGS+="NO_COM=no"
|
||||
|
||||
ifeq ($(ARDRONE_TARGET_OS),Linux)
|
||||
ifeq ("$(IPHONE_MODE)","yes")
|
||||
OS_DEFINE=GNU_LINUX
|
||||
else
|
||||
ifeq ($(ARDRONE_TARGET_OS),iphoneos)
|
||||
ifeq ("$(USE_LINUX)","yes")
|
||||
OS_DEFINE=GNU_LINUX
|
||||
else
|
||||
ifeq ($(ARDRONE_TARGET_OS),iphonesimulator)
|
||||
OS_DEFINE=GNU_LINUX
|
||||
else
|
||||
TARGET:=$(TARGET).exe
|
||||
OS_DEFINE=WINDOW
|
||||
endif
|
||||
TARGET:=$(TARGET).exe
|
||||
OS_DEFINE=WINDOW
|
||||
endif
|
||||
endif
|
||||
|
||||
GENERIC_CFLAGS+=-D_MOBILE
|
||||
|
||||
ifeq ("$(PC_USE_TABLE_PILOTAGE)","yes")
|
||||
GENERIC_CFLAGS+=-DUSE_TABLE_PILOTAGE
|
||||
ifeq ($(RECORD_RAW_VIDEO),yes)
|
||||
GENERIC_CFLAGS+=-DRECORD_RAW_VIDEO
|
||||
endif
|
||||
|
||||
ifeq ("$(RECORD_VIDEO)","yes")
|
||||
GENERIC_CFLAGS+=-DRECORD_VIDEO
|
||||
ifeq ($(RECORD_FFMPEG_VIDEO),yes)
|
||||
GENERIC_CFLAGS+=-DRECORD_FFMPEG_VIDEO
|
||||
endif
|
||||
|
||||
ifeq ($(RECORD_ENCODED_VIDEO),yes)
|
||||
GENERIC_CFLAGS+=-DRECORD_ENCODED_VIDEO
|
||||
endif
|
||||
|
||||
GENERIC_CFLAGS+=-D$(OS_DEFINE)
|
||||
ifeq ($(IPHONE_MODE),yes)
|
||||
ifeq ($(ARDRONE_TARGET_OS),iphoneos)
|
||||
ifeq ("$(IPHONE_MODE)","yes")
|
||||
ifeq ($(PLATFORM_NAME),iphoneos)
|
||||
GENERIC_CFLAGS+=-DTARGET_OS_IPHONE
|
||||
else
|
||||
GENERIC_CFLAGS+=-DTARGET_IPHONE_SIMULATOR
|
||||
@@ -106,39 +105,50 @@ ifdef PC_TARGET
|
||||
else
|
||||
SDK_FLAGS+="USE_LINUX=no"
|
||||
endif
|
||||
|
||||
|
||||
SDK_FLAGS+="USE_ELINUX=no"
|
||||
|
||||
ifneq ($(findstring iphone,$(ARDRONE_TARGET_OS)),)
|
||||
|
||||
ifeq ("$(IPHONE_MODE)","yes")
|
||||
SDK_FLAGS+="USE_IPHONE=yes"
|
||||
SDK_FLAGS+="IPHONE_PLATFORM=$(ARDRONE_TARGET_OS)"
|
||||
SDK_FLAGS+="IPHONE_SDK_PATH=$(IPHONE_SDK_PATH)"
|
||||
SDK_FLAGS+="FFMPEG_SUPPORT=no"
|
||||
SDK_FLAGS+="ITTIAM_SUPPORT=yes"
|
||||
SDK_FLAGS+="USE_VIDEO_TCP=yes"
|
||||
SDK_FLAGS+="USE_VIDEO_HD=no"
|
||||
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"
|
||||
SDK_FLAGS+="TOOLCHAIN_VERSION=arm-linux-androideabi-4.4.3"
|
||||
SDK_FLAGS+="NDK_PLATFORM_VERSION=android-8"
|
||||
SDK_FLAGS+="FFMPEG_SUPPORT=yes"
|
||||
SDK_FLAGS+="ITTIAM_SUPPORT=yes"
|
||||
SDK_FLAGS+="USE_VIDEO_TCP=yes"
|
||||
SDK_FLAGS+="USE_VIDEO_HD=no"
|
||||
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
|
||||
ifeq ("$(USE_LINUX)","yes")
|
||||
ifeq ("$(PROJECT)","ardrone")
|
||||
SDK_FLAGS+="FFMPEG_SUPPORT=yes"
|
||||
SDK_FLAGS+="ITTIAM_SUPPORT=no"
|
||||
SDK_FLAGS+="USE_VIDEO_TCP=no"
|
||||
SDK_FLAGS+="USE_VIDEO_HD=no"
|
||||
else
|
||||
SDK_FLAGS+="FFMPEG_SUPPORT=yes"
|
||||
SDK_FLAGS+="ITTIAM_SUPPORT=no"
|
||||
SDK_FLAGS+="USE_VIDEO_TCP=yes"
|
||||
SDK_FLAGS+="USE_VIDEO_HD=no"
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(filter USE_BLUEZ=%,$(TMP_SDK_FLAGS)),)
|
||||
@@ -148,7 +158,7 @@ ifdef PC_TARGET
|
||||
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"
|
||||
|
||||
@@ -159,7 +169,7 @@ ifdef PC_TARGET
|
||||
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"
|
||||
@@ -169,3 +179,6 @@ ifdef PC_TARGET
|
||||
|
||||
endif
|
||||
|
||||
export SDK_FLAGS
|
||||
export GENERIC_CFLAGS
|
||||
export VPSDK_PARALLEL_BUILD
|
||||
|
||||
@@ -16,6 +16,10 @@ endif
|
||||
ifndef USE_LINUX
|
||||
USE_LINUX = yes
|
||||
endif
|
||||
ifndef PROJECT
|
||||
# set default to ardrone2 for video TCP com.
|
||||
PROJECT = ardrone2
|
||||
endif
|
||||
MAJOR_VERSION = 0
|
||||
MINOR_VERSION = 0
|
||||
MODIF_VERSION = 0
|
||||
@@ -23,22 +27,9 @@ MODIF_VERSION = 0
|
||||
#########################################################
|
||||
# ARDroneTool options definitions
|
||||
#########################################################
|
||||
USE_ARDRONE_MAINLOOP=yes
|
||||
USE_ARDRONE_TOOL=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"
|
||||
@@ -46,10 +37,12 @@ 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
|
||||
RECORD_ENCODED_VIDEO = yes
|
||||
RECORD_RAW_VIDEO = no
|
||||
RECORD_FFMPEG_VIDEO = no
|
||||
|
||||
# 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
|
||||
# Vision data are saved into file only if we define RECORD_RAW_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
|
||||
|
||||
-17
@@ -1,17 +0,0 @@
|
||||
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
@@ -1,16 +0,0 @@
|
||||
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
@@ -1,18 +0,0 @@
|
||||
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
@@ -1,27 +0,0 @@
|
||||
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
@@ -1,19 +0,0 @@
|
||||
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
@@ -1,13 +0,0 @@
|
||||
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
@@ -1,22 +0,0 @@
|
||||
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
@@ -1,71 +0,0 @@
|
||||
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
@@ -1,44 +0,0 @@
|
||||
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
@@ -1,91 +0,0 @@
|
||||
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
@@ -1,69 +0,0 @@
|
||||
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
@@ -1,74 +0,0 @@
|
||||
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
@@ -1,67 +0,0 @@
|
||||
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
@@ -1,71 +0,0 @@
|
||||
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
@@ -1,80 +0,0 @@
|
||||
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
@@ -1,88 +0,0 @@
|
||||
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
@@ -1,74 +0,0 @@
|
||||
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
@@ -1,64 +0,0 @@
|
||||
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
@@ -1,68 +0,0 @@
|
||||
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
@@ -1,68 +0,0 @@
|
||||
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
@@ -1,50 +0,0 @@
|
||||
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
@@ -1,79 +0,0 @@
|
||||
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
@@ -1,64 +0,0 @@
|
||||
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
@@ -1,55 +0,0 @@
|
||||
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
@@ -1,66 +0,0 @@
|
||||
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
@@ -1,22 +0,0 @@
|
||||
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
@@ -1,86 +0,0 @@
|
||||
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
@@ -1,77 +0,0 @@
|
||||
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
@@ -1,53 +0,0 @@
|
||||
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
@@ -1,34 +0,0 @@
|
||||
-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
@@ -1,24 +0,0 @@
|
||||
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
@@ -1,57 +0,0 @@
|
||||
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
@@ -1,12 +0,0 @@
|
||||
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
@@ -1,48 +0,0 @@
|
||||
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
@@ -1,26 +0,0 @@
|
||||
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
@@ -1,61 +0,0 @@
|
||||
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
@@ -1,53 +0,0 @@
|
||||
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
@@ -1,51 +0,0 @@
|
||||
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
@@ -1,52 +0,0 @@
|
||||
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
@@ -1,53 +0,0 @@
|
||||
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
@@ -1,54 +0,0 @@
|
||||
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
@@ -1,11 +0,0 @@
|
||||
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
@@ -1,60 +0,0 @@
|
||||
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
@@ -1,52 +0,0 @@
|
||||
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
@@ -1,23 +0,0 @@
|
||||
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
@@ -1,27 +0,0 @@
|
||||
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
@@ -1,58 +0,0 @@
|
||||
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
@@ -1,12 +0,0 @@
|
||||
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
@@ -1,53 +0,0 @@
|
||||
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
@@ -1,12 +0,0 @@
|
||||
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
@@ -1,12 +0,0 @@
|
||||
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
@@ -1,58 +0,0 @@
|
||||
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
@@ -1,60 +0,0 @@
|
||||
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
@@ -1,52 +0,0 @@
|
||||
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
@@ -1,56 +0,0 @@
|
||||
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
@@ -1,57 +0,0 @@
|
||||
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
@@ -1,54 +0,0 @@
|
||||
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
@@ -1,59 +0,0 @@
|
||||
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
@@ -1,52 +0,0 @@
|
||||
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
@@ -1,57 +0,0 @@
|
||||
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
@@ -1,52 +0,0 @@
|
||||
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
@@ -1,35 +0,0 @@
|
||||
-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
@@ -1,58 +0,0 @@
|
||||
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
@@ -1,53 +0,0 @@
|
||||
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
@@ -1,51 +0,0 @@
|
||||
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
@@ -1,56 +0,0 @@
|
||||
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
@@ -1,49 +0,0 @@
|
||||
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
@@ -1,13 +0,0 @@
|
||||
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
@@ -1,57 +0,0 @@
|
||||
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
@@ -1,48 +0,0 @@
|
||||
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
@@ -1,54 +0,0 @@
|
||||
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
@@ -1,29 +0,0 @@
|
||||
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
@@ -1,23 +0,0 @@
|
||||
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
@@ -1,5 +0,0 @@
|
||||
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
@@ -1,23 +0,0 @@
|
||||
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
@@ -1,32 +0,0 @@
|
||||
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
@@ -1,34 +0,0 @@
|
||||
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
@@ -1,31 +0,0 @@
|
||||
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
@@ -1,12 +0,0 @@
|
||||
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
@@ -1,21 +0,0 @@
|
||||
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
@@ -1,72 +0,0 @@
|
||||
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
@@ -1,31 +0,0 @@
|
||||
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
@@ -1,27 +0,0 @@
|
||||
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
@@ -1,34 +0,0 @@
|
||||
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
@@ -1,42 +0,0 @@
|
||||
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
@@ -1,41 +0,0 @@
|
||||
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
@@ -1,40 +0,0 @@
|
||||
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
@@ -1,39 +0,0 @@
|
||||
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
@@ -1,12 +0,0 @@
|
||||
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
@@ -1,50 +0,0 @@
|
||||
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
@@ -1,50 +0,0 @@
|
||||
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
@@ -1,13 +0,0 @@
|
||||
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
@@ -1,21 +0,0 @@
|
||||
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
|
||||
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