-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
336 additions
and
339 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,5 @@ nbproject | |
*.a | ||
*.orig | ||
*.*~ | ||
moc_* | ||
ui_* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
cmake_minimum_required(VERSION 2.8) | ||
|
||
set(${project}_crc_SRC | ||
set(${PROJECT_NAME}_crc_SRC | ||
crc.cpp | ||
) | ||
|
||
include_directories(${CMAKE_SOURCE_DIR}) | ||
|
||
|
||
add_library(${project}_crc STATIC | ||
${${project}_crc_SRC} | ||
add_library(${PROJECT_NAME}_crc STATIC | ||
${${PROJECT_NAME}_crc_SRC} | ||
) | ||
|
||
target_link_libraries(${project}_crc | ||
target_link_libraries(${PROJECT_NAME}_crc | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
#ifndef CRC_H | ||
#define CRC_H | ||
#pragma once | ||
|
||
#include <stdint.h> | ||
#include <cstdint> | ||
#include <cstdlib> | ||
|
||
uint_least32_t crc32(const unsigned char * buf, size_t len); | ||
|
||
#endif /* CRC_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
cmake_minimum_required(VERSION 2.8) | ||
|
||
set(${project}_codec_huff_SRC | ||
set(${PROJECT_NAME}_codec_huff_SRC | ||
codecHUFF.cpp | ||
shclib.cpp | ||
) | ||
|
||
include_directories(${CMAKE_SOURCE_DIR}) | ||
|
||
add_library(${project}_codec_huff STATIC | ||
${${project}_codec_huff_SRC} | ||
add_library(${PROJECT_NAME}_codec_huff STATIC | ||
${${PROJECT_NAME}_codec_huff_SRC} | ||
) | ||
|
||
target_link_libraries(${project}_codec_huff | ||
target_link_libraries(${PROJECT_NAME}_codec_huff | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
cmake_minimum_required(VERSION 2.8) | ||
|
||
set(${project}_codec_mtf_SRC | ||
set(${PROJECT_NAME}_codec_mtf_SRC | ||
codecMTF.cpp | ||
) | ||
|
||
include_directories(${CMAKE_SOURCE_DIR}) | ||
|
||
add_library(${project}_codec_mtf STATIC | ||
${${project}_codec_mtf_SRC} | ||
add_library(${PROJECT_NAME}_codec_mtf STATIC | ||
${${PROJECT_NAME}_codec_mtf_SRC} | ||
) | ||
|
||
target_link_libraries(${project}_codec_mtf | ||
target_link_libraries(${PROJECT_NAME}_codec_mtf | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
cmake_minimum_required(VERSION 2.8) | ||
|
||
set(${project}_codec_rle_SRC | ||
set(${PROJECT_NAME}_codec_rle_SRC | ||
codecRLE.cpp | ||
) | ||
|
||
include_directories(${CMAKE_SOURCE_DIR}) | ||
|
||
add_library(${project}_codec_rle STATIC | ||
${${project}_codec_rle_SRC} | ||
add_library(${PROJECT_NAME}_codec_rle STATIC | ||
${${PROJECT_NAME}_codec_rle_SRC} | ||
) | ||
|
||
target_link_libraries(${project}_codec_rle | ||
target_link_libraries(${PROJECT_NAME}_codec_rle | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,8 @@ | |
|
||
#include <climits> | ||
|
||
#include <cstdio> | ||
|
||
Codec_RLE::Codec_RLE() { } | ||
|
||
Codec_RLE::~Codec_RLE() { } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.