Skip to content

Commit

Permalink
Latm_decorder: Version1.1.0
Browse files Browse the repository at this point in the history
1.0.0からの変更点
--benchmark --overwriteオプションの追加
メモリリークの解消
高速化
  • Loading branch information
tana3n committed Feb 26, 2022
1 parent 26fd518 commit c17321b
Show file tree
Hide file tree
Showing 4 changed files with 115 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Latm_decoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ using namespace std::filesystem;

void usage() {
std::cout << "Usage: latm_decoder [options] <input> \n";
std::cout << "--overwrite\tIf it exists in the output destination, it will be overwritten\n";
std::cout << "--overwrite\tIf it exists in the output destination, it will be overwritten.\n";
std::cout << "--benchmark\tShow elapsed time.\n";

return;
}
Expand Down
2 changes: 1 addition & 1 deletion Latm_decoder.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#pragma once
#define Version "1.0.0"
#define Version "1.1.0"
#include <filesystem>
using namespace std::filesystem;

Expand Down
98 changes: 98 additions & 0 deletions Resource.rc
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
// Microsoft Visual C++ generated resource script.
//
#include "resource.h"

#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "winres.h"

/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS

/////////////////////////////////////////////////////////////////////////////
// ���{�� (���{) resources

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_JPN)
LANGUAGE LANG_JAPANESE, SUBLANG_DEFAULT
#pragma code_page(932)

#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//

1 TEXTINCLUDE
BEGIN
"resource.h\0"
END

2 TEXTINCLUDE
BEGIN
"#include ""winres.h""\r\n"
"\0"
END

3 TEXTINCLUDE
BEGIN
"\r\n"
"\0"
END

#endif // APSTUDIO_INVOKED


/////////////////////////////////////////////////////////////////////////////
//
// Version
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,1,0,0
PRODUCTVERSION 1,1,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x40004L
FILETYPE 0x1L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "041104b0"
BEGIN
VALUE "FileDescription", "Convert LATM/LOAS to ADTS "
VALUE "FileVersion", "1.1.0.0"
VALUE "InternalName", "Latm_decorder.exe"
VALUE "OriginalFilename", "Latm_decorder.exe"
VALUE "ProductName", "Latm_decorder"
VALUE "ProductVersion", "1.1.0.0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x411, 1200
END
END

#endif // ���{�� (���{) resources
/////////////////////////////////////////////////////////////////////////////



#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//


/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED

14 changes: 14 additions & 0 deletions resource.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by Resource1.rc

// 新しいオブジェクトの次の既定値
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 101
#define _APS_NEXT_COMMAND_VALUE 40001
#define _APS_NEXT_CONTROL_VALUE 1001
#define _APS_NEXT_SYMED_VALUE 101
#endif
#endif

0 comments on commit c17321b

Please sign in to comment.