Skip to content

Commit

Permalink
改行のミスを修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
rigaya committed May 11, 2024
1 parent 47612c8 commit 615b31d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions NVEncC/NVEncC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ int parse_print_options(const TCHAR *option_name, const TCHAR *arg1, const RGYPa
_ftprintf(stdout, _T("%s\n"), getAVCodecs((RGYAVCodecType)(RGY_AVCODEC_DEC | RGY_AVCODEC_ENC), { AVMEDIA_TYPE_AUDIO }).c_str());
_ftprintf(stdout, _T("\nSbutitles\n"));
_ftprintf(stdout, _T("%s\n"), getAVCodecs((RGYAVCodecType)(RGY_AVCODEC_DEC | RGY_AVCODEC_ENC), { AVMEDIA_TYPE_SUBTITLE }).c_str());
_ftprintf(stdout, _T("\Data / Attachment\n"));
_ftprintf(stdout, _T("\nData / Attachment\n"));
_ftprintf(stdout, _T("%s\n"), getAVCodecs((RGYAVCodecType)(RGY_AVCODEC_DEC | RGY_AVCODEC_ENC), { AVMEDIA_TYPE_DATA, AVMEDIA_TYPE_ATTACHMENT }).c_str());
return 1;
}
Expand All @@ -200,7 +200,7 @@ int parse_print_options(const TCHAR *option_name, const TCHAR *arg1, const RGYPa
_ftprintf(stdout, _T("%s\n"), getAVCodecs((RGYAVCodecType)(RGY_AVCODEC_ENC), { AVMEDIA_TYPE_AUDIO }).c_str());
_ftprintf(stdout, _T("\nSbutitles\n"));
_ftprintf(stdout, _T("%s\n"), getAVCodecs((RGYAVCodecType)(RGY_AVCODEC_ENC), { AVMEDIA_TYPE_SUBTITLE }).c_str());
_ftprintf(stdout, _T("\Data / Attachment\n"));
_ftprintf(stdout, _T("\nData / Attachment\n"));
_ftprintf(stdout, _T("%s\n"), getAVCodecs((RGYAVCodecType)(RGY_AVCODEC_ENC), { AVMEDIA_TYPE_DATA, AVMEDIA_TYPE_ATTACHMENT }).c_str());
return 1;
}
Expand All @@ -211,7 +211,7 @@ int parse_print_options(const TCHAR *option_name, const TCHAR *arg1, const RGYPa
_ftprintf(stdout, _T("%s\n"), getAVCodecs((RGYAVCodecType)(RGY_AVCODEC_DEC), { AVMEDIA_TYPE_AUDIO }).c_str());
_ftprintf(stdout, _T("\nSbutitles\n"));
_ftprintf(stdout, _T("%s\n"), getAVCodecs((RGYAVCodecType)(RGY_AVCODEC_DEC), { AVMEDIA_TYPE_SUBTITLE }).c_str());
_ftprintf(stdout, _T("\Data / Attachment\n"));
_ftprintf(stdout, _T("\nData / Attachment\n"));
_ftprintf(stdout, _T("%s\n"), getAVCodecs((RGYAVCodecType)(RGY_AVCODEC_DEC), { AVMEDIA_TYPE_DATA, AVMEDIA_TYPE_ATTACHMENT }).c_str());
return 1;
}
Expand Down

0 comments on commit 615b31d

Please sign in to comment.