Skip to content

Commit 43db178

Browse files
committed
Set project name
1 parent 12ffb59 commit 43db178

File tree

271 files changed

+30
-33
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

271 files changed

+30
-33
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232
uses: softprops/action-gh-release@v2
3333
with:
3434
tag_name: latest
35-
files: build/fpvue
35+
files: build/pixelpilot

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
*.i*86
3636
*.x86_64
3737
*.hex
38-
fpvue
3938

4039
# Debug files
4140
*.dSYM/
@@ -59,3 +58,4 @@ cmake_install.cmake
5958
Makefile
6059

6160
.vscode/
61+
build/

CMakeLists.txt

+14-15
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
cmake_minimum_required(VERSION 3.1)
22

3-
project(fpvue VERSION 0.12)
3+
project(pixelpilot VERSION 0.12)
44

55
set(CMAKE_CXX_STANDARD 17)
66

77
add_compile_options("-Wno-address-of-packed-member")
88

99
set(SOURCE_FILES
10-
drm.h
11-
drm.c
12-
osd.h
13-
osd.c
14-
rtp.h
15-
rtp.c
16-
mavlink.h
17-
mavlink.c
18-
main.cpp
19-
main.h
20-
scheduling_helper.hpp
21-
gstrtpreceiver.cpp
22-
gstrtpreceiver.h)
10+
src/drm.h
11+
src/drm.c
12+
src/osd.h
13+
src/osd.c
14+
src/rtp.h
15+
src/rtp.c
16+
src/mavlink.h
17+
src/mavlink.c
18+
src/main.cpp
19+
src/main.h
20+
src/scheduling_helper.hpp
21+
src/gstrtpreceiver.cpp
22+
src/gstrtpreceiver.h)
2323

2424
include_directories("/usr/include/libdrm" "/usr/include/cairo")
2525

@@ -46,7 +46,6 @@ if(CMAKE_BUILD_TYPE MATCHES "Debug")
4646
)
4747
endif()
4848

49-
configure_file(fpvue_config.h.in fpvue_config.h)
5049
target_include_directories(${PROJECT_NAME} PUBLIC "${PROJECT_BINARY_DIR}")
5150

5251
include(GNUInstallDirs)

README.md

+4-4

fpvue_config.h

-2
This file was deleted.

fpvue_config.h.in

-2
This file was deleted.

drm.c src/drm.c

File renamed without changes.

drm.h src/drm.h

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

icons/icons.h src/icons/icons.h

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

main.cpp src/main.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define MODULE_TAG "fpvue"
1+
#define MODULE_TAG "pixelpilot"
22

33
#include <stdio.h>
44
#include <stdlib.h>
@@ -47,7 +47,7 @@ extern "C" {
4747
#include "gstrtpreceiver.h"
4848
#include "scheduling_helper.hpp"
4949
#include "time_util.h"
50-
#include "fpvue_config.h"
50+
#include "pixelpilot_config.h"
5151

5252

5353
#define READ_BUF_SIZE (1024*1024) // SZ_1M https://github.com/rockchip-linux/mpp/blob/ed377c99a733e2cdbcc457a6aa3f0fcd438a9dff/osal/inc/mpp_common.h#L179
@@ -500,10 +500,10 @@ void set_mpp_decoding_parameters(MppApi * mpi, MppCtx ctx) {
500500

501501
void printHelp() {
502502
printf(
503-
"\n\t\tFPVue FPV Decoder for Rockchip (%d.%d)\n"
503+
"\n\t\tPixelPilot FPV Decoder for Rockchip (%d.%d)\n"
504504
"\n"
505505
" Usage:\n"
506-
" fpvue [Arguments]\n"
506+
" pixelpilot [Arguments]\n"
507507
"\n"
508508
" Arguments:\n"
509509
" -p [Port] - Listen port (Default: 5600)\n"
@@ -523,7 +523,7 @@ void printHelp() {
523523
" --dvr-fmp4 - Save the video feed as a fragmented mp4\n"
524524
"\n"
525525
" --screen-mode - Override default screen mode. ex:1920x1080@120\n"
526-
"\n", fpvue_VERSION_MAJOR , fpvue_VERSION_MINOR
526+
"\n", PILOT_VERSION_MAJOR, PILOT_VERSION_MINOR
527527
);
528528
}
529529

@@ -640,7 +640,7 @@ int main(int argc, char **argv)
640640
}
641641

642642
__OnArgument("--version") {
643-
printf("FPVue Rockchip %d.%d\n", fpvue_VERSION_MAJOR , fpvue_VERSION_MINOR);
643+
printf("PixelPilot Rockchip %d.%d\n", PILOT_VERSION_MAJOR, PILOT_VERSION_MINOR);
644644
return 0;
645645
}
646646

@@ -651,7 +651,7 @@ int main(int argc, char **argv)
651651
return 0;
652652
}
653653

654-
printf("FPVue Rockchip %d.%d\n", fpvue_VERSION_MAJOR , fpvue_VERSION_MINOR);
654+
printf("PixelPilot Rockchip %d.%d\n", PILOT_VERSION_MAJOR, PILOT_VERSION_MINOR);
655655

656656
if (enable_osd == 0 ) {
657657
video_zpos = 4;
@@ -803,4 +803,4 @@ int main(int argc, char **argv)
803803
close(drm_fd);
804804

805805
return 0;
806-
}
806+
}

main.h src/main.h

File renamed without changes.

mavlink.c src/mavlink.c

File renamed without changes.

mavlink.h src/mavlink.h

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

minimp4.h src/minimp4.h

File renamed without changes.

notes src/notes

File renamed without changes.

osd.c src/osd.c

File renamed without changes.

osd.h src/osd.h

File renamed without changes.

src/pixelpilot_config.h

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#define PILOT_VERSION_MAJOR 0
2+
#define PILOT_VERSION_MINOR 13.2

rtp.c src/rtp.c

File renamed without changes.

rtp.h src/rtp.h

File renamed without changes.
File renamed without changes.

time_util.h src/time_util.h

File renamed without changes.

0 commit comments

Comments
 (0)