Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = openfec
PROJECT_NUMBER = $VERSION$
OUTPUT_DIRECTORY =
PROJECT_NUMBER = # TODO: Generate version string in precompile script
OUTPUT_DIRECTORY = doc/doxygen
CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English
BRIEF_MEMBER_DESC = YES
Expand All @@ -25,7 +25,7 @@ ABBREVIATE_BRIEF = "The $name class" \
ALWAYS_DETAILED_SEC = NO
INLINE_INHERITED_MEMB = NO
FULL_PATH_NAMES = YES
STRIP_FROM_PATH = /home/planete/detchart/
STRIP_FROM_PATH =
STRIP_FROM_INC_PATH =
SHORT_NAMES = NO
JAVADOC_AUTOBRIEF = NO
Expand Down Expand Up @@ -95,7 +95,7 @@ WARN_LOGFILE =
#---------------------------------------------------------------------------
# configuration options related to the input files
#---------------------------------------------------------------------------
INPUT = /scratch/lupus/trunk/openfec
INPUT =
INPUT_ENCODING = UTF-8
FILE_PATTERNS = *.c \
*.cc \
Expand Down
1 change: 1 addition & 0 deletions applis/eperftool/callbacks.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
*/

#include "callbacks.h"
#include <stdlib.h>

void* decode_source_symbol_callback(void *context,unsigned int size, unsigned int esi)
{
Expand Down
4 changes: 2 additions & 2 deletions applis/eperftool/eperftool.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ print_params()
OF_TRACE_LVL(1, ("\tcodec_id:\t\t%i\n", codec_id))
OF_TRACE_LVL(1, ("\ttot_nb_source_symbols:\t%i\n", tot_nb_source_symbols))
OF_TRACE_LVL(1, ("\ttot_nb_repair_symbols:\t%i\n", tot_nb_repair_symbols))
OF_TRACE_LVL(1, ("\tcode_rate:\t\t%i\n", code_rate))
OF_TRACE_LVL(1, ("\tcode_rate:\t\t%.2f\n", code_rate))
OF_TRACE_LVL(1, ("\tfec_ratio:\t\t%f\n", fec_ratio))
OF_TRACE_LVL(1, ("\tsrc_pkt_ratio:\t\t%i\n", src_pkt_ratio))
OF_TRACE_LVL(1, ("\tuse_src_pkt_ratio:\t%s\n", use_src_pkt_ratio ? "true" : "false"))
Expand Down Expand Up @@ -147,7 +147,7 @@ print_preamble (char *command_line)
char *version; /* pointer to version string */
char *copyrights; /* pointer to copyrights string */

OF_PRINT((command_line))
OF_PRINT(("%s", command_line)) // To avoid -Wformat-security warning.
OF_PRINT(("eperf_tool: an extended AL-FEC performance evaluation tool\n"))
/* NB: since session pointer is null, we only get a generic string for the
* OpenFEC.org project, not specific to the codec itself */
Expand Down
Binary file modified perf_eval/descr_stats
100644 → 100755
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ INT32 of_linear_binary_code_backward_substitution (void * variables[],
#if 1
if (ofcb->nb_tmp_symbols!=0)
#ifdef OF_DEBUG
of_add_from_multiple_symbols(variables[i],ofcb->tmp_tab_symbols,ofcb->nb_tmp_symbols,
of_add_from_multiple_symbols(variables[i],(const void**)ofcb->tmp_tab_symbols,ofcb->nb_tmp_symbols,
ofcb->encoding_symbol_length,
&(ofcb->stats_xor->nb_xor_for_ML));
#else
Expand Down
1 change: 1 addition & 0 deletions src/lib_common/of_openfec_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ of_status_t of_more_about (of_session_t* ses,
char** copyrights_str)
{
OF_ENTER_FUNCTION
// TODO: Generate version string in precompile script
static char of_version_string[] = "OpenFEC.org - Version 1.3.0, April 13th, 2012\n";
static char of_copyrights_string[] ="\n\
OpenFEC.org - Because free, open source AL-FEC codes and codecs matter\n\
Expand Down