Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
43f613d9
Commit
43f613d9
authored
Jul 28, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder_api: convert to C++
parent
2277d143
Hide whitespace changes
Inline
Side-by-side
Showing
46 changed files
with
61 additions
and
73 deletions
+61
-73
Makefile.am
Makefile.am
+4
-6
CommandLine.cxx
src/CommandLine.cxx
+1
-1
DecoderAPI.cxx
src/DecoderAPI.cxx
+1
-1
DecoderAPI.hxx
src/DecoderAPI.hxx
+5
-15
DecoderBuffer.cxx
src/DecoderBuffer.cxx
+1
-1
DecoderCommand.hxx
src/DecoderCommand.hxx
+3
-3
DecoderControl.hxx
src/DecoderControl.hxx
+1
-1
DecoderError.hxx
src/DecoderError.hxx
+3
-3
DecoderInternal.hxx
src/DecoderInternal.hxx
+1
-1
DecoderList.cxx
src/DecoderList.cxx
+1
-1
DecoderPlugin.cxx
src/DecoderPlugin.cxx
+1
-1
DecoderPlugin.hxx
src/DecoderPlugin.hxx
+3
-3
DecoderPrint.cxx
src/DecoderPrint.cxx
+1
-1
DecoderThread.cxx
src/DecoderThread.cxx
+3
-3
SongUpdate.cxx
src/SongUpdate.cxx
+1
-1
TagFile.cxx
src/TagFile.cxx
+1
-1
UpdateContainer.cxx
src/UpdateContainer.cxx
+1
-1
UpdateSong.cxx
src/UpdateSong.cxx
+1
-1
AdPlugDecoderPlugin.cxx
src/decoder/AdPlugDecoderPlugin.cxx
+1
-1
AudiofileDecoderPlugin.cxx
src/decoder/AudiofileDecoderPlugin.cxx
+1
-1
DsdLib.cxx
src/decoder/DsdLib.cxx
+1
-1
DsdiffDecoderPlugin.cxx
src/decoder/DsdiffDecoderPlugin.cxx
+1
-1
DsfDecoderPlugin.cxx
src/decoder/DsfDecoderPlugin.cxx
+1
-1
FaadDecoderPlugin.cxx
src/decoder/FaadDecoderPlugin.cxx
+1
-1
FfmpegDecoderPlugin.cxx
src/decoder/FfmpegDecoderPlugin.cxx
+1
-1
FlacCommon.hxx
src/decoder/FlacCommon.hxx
+1
-1
FlacInput.cxx
src/decoder/FlacInput.cxx
+1
-1
FluidsynthDecoderPlugin.cxx
src/decoder/FluidsynthDecoderPlugin.cxx
+1
-1
GmeDecoderPlugin.cxx
src/decoder/GmeDecoderPlugin.cxx
+1
-1
MadDecoderPlugin.cxx
src/decoder/MadDecoderPlugin.cxx
+1
-1
MikmodDecoderPlugin.cxx
src/decoder/MikmodDecoderPlugin.cxx
+1
-1
ModplugDecoderPlugin.cxx
src/decoder/ModplugDecoderPlugin.cxx
+1
-1
MpcdecDecoderPlugin.cxx
src/decoder/MpcdecDecoderPlugin.cxx
+1
-1
Mpg123DecoderPlugin.cxx
src/decoder/Mpg123DecoderPlugin.cxx
+1
-1
OggCodec.hxx
src/decoder/OggCodec.hxx
+1
-1
OggUtil.cxx
src/decoder/OggUtil.cxx
+1
-1
OpusDecoderPlugin.cxx
src/decoder/OpusDecoderPlugin.cxx
+1
-1
PcmDecoderPlugin.cxx
src/decoder/PcmDecoderPlugin.cxx
+1
-1
SndfileDecoderPlugin.cxx
src/decoder/SndfileDecoderPlugin.cxx
+1
-1
VorbisDecoderPlugin.cxx
src/decoder/VorbisDecoderPlugin.cxx
+1
-1
WavpackDecoderPlugin.cxx
src/decoder/WavpackDecoderPlugin.cxx
+1
-1
WildmidiDecoderPlugin.cxx
src/decoder/WildmidiDecoderPlugin.cxx
+1
-1
sidplay_decoder_plugin.cxx
src/decoder/sidplay_decoder_plugin.cxx
+1
-1
dump_playlist.cxx
test/dump_playlist.cxx
+1
-1
read_tags.cxx
test/read_tags.cxx
+1
-1
run_decoder.cxx
test/run_decoder.cxx
+1
-1
No files found.
Makefile.am
View file @
43f613d9
...
...
@@ -58,10 +58,6 @@ mpd_headers = \
src/filter_internal.h
\
src/command.h
\
src/conf.h
\
src/decoder_plugin.h
\
src/decoder_command.h
\
src/decoder_api.h
\
src/decoder_plugin.h
\
src/encoder_plugin.h
\
src/encoder_api.h
\
src/fd_util.h
\
...
...
@@ -129,10 +125,12 @@ src_mpd_SOURCES = \
src/CommandLine.cxx src/CommandLine.hxx
\
src/CrossFade.cxx src/CrossFade.hxx
\
src/cue/CueParser.cxx src/cue/CueParser.hxx
\
src/
decoder_error.h
\
src/
DecoderError.hxx
\
src/DecoderThread.cxx src/DecoderThread.hxx
\
src/DecoderCommand.hxx
\
src/DecoderControl.cxx src/DecoderControl.hxx
\
src/DecoderAPI.cxx
\
src/DecoderAPI.cxx src/DecoderAPI.hxx
\
src/DecoderPlugin.hxx
\
src/DecoderInternal.cxx src/DecoderInternal.hxx
\
src/DecoderPrint.cxx src/DecoderPrint.hxx
\
src/Directory.cxx src/Directory.hxx
\
...
...
src/CommandLine.cxx
View file @
43f613d9
...
...
@@ -23,7 +23,7 @@
#include "Log.hxx"
#include "conf.h"
#include "DecoderList.hxx"
#include "
decoder_plugin.h
"
#include "
DecoderPlugin.hxx
"
#include "OutputList.hxx"
#include "OutputPlugin.hxx"
#include "InputRegistry.hxx"
...
...
src/DecoderAPI.cxx
View file @
43f613d9
...
...
@@ -18,7 +18,7 @@
*/
#include "config.h"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "AudioConfig.hxx"
#include "replay_gain_config.h"
#include "MusicChunk.hxx"
...
...
src/
decoder_api.h
→
src/
DecoderAPI.hxx
View file @
43f613d9
/*
* Copyright (C) 2003-201
1
The Music Player Daemon Project
* Copyright (C) 2003-201
3
The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -24,24 +24,18 @@
* communicate with the mpd core.
*/
#ifndef MPD_DECODER_API_H
#define MPD_DECODER_API_H
#ifndef MPD_DECODER_API_H
XX
#define MPD_DECODER_API_H
XX
#include "check.h"
#include "
decoder_command.h
"
#include "
decoder_plugin.h
"
#include "
DecoderCommand.hxx
"
#include "
DecoderPlugin.hxx
"
#include "input_stream.h"
#include "replay_gain_info.h"
#include "tag.h"
#include "audio_format.h"
#include "conf.h"
#include <stdbool.h>
#ifdef __cplusplus
extern
"C"
{
#endif
/**
* Notify the player thread that it has finished initialization and
* that it has read the song's meta data.
...
...
@@ -172,8 +166,4 @@ void
decoder_mixramp
(
struct
decoder
*
decoder
,
char
*
mixramp_start
,
char
*
mixramp_end
);
#ifdef __cplusplus
}
#endif
#endif
src/DecoderBuffer.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "DecoderBuffer.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include <glib.h>
...
...
src/
decoder_command.h
→
src/
DecoderCommand.hxx
View file @
43f613d9
/*
* Copyright (C) 2003-201
1
The Music Player Daemon Project
* Copyright (C) 2003-201
3
The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_DECODER_COMMAND_H
#define MPD_DECODER_COMMAND_H
#ifndef MPD_DECODER_COMMAND_H
XX
#define MPD_DECODER_COMMAND_H
XX
enum
decoder_command
{
DECODE_COMMAND_NONE
=
0
,
...
...
src/DecoderControl.hxx
View file @
43f613d9
...
...
@@ -20,7 +20,7 @@
#ifndef MPD_DECODER_CONTROL_HXX
#define MPD_DECODER_CONTROL_HXX
#include "
decoder_command.h
"
#include "
DecoderCommand.hxx
"
#include "audio_format.h"
#include "thread/Mutex.hxx"
#include "thread/Cond.hxx"
...
...
src/
decoder_error.h
→
src/
DecoderError.hxx
View file @
43f613d9
/*
* Copyright (C) 2003-201
2
The Music Player Daemon Project
* Copyright (C) 2003-201
3
The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_DECODER_ERROR_H
#define MPD_DECODER_ERROR_H
#ifndef MPD_DECODER_ERROR_H
XX
#define MPD_DECODER_ERROR_H
XX
#include <glib.h>
...
...
src/DecoderInternal.hxx
View file @
43f613d9
...
...
@@ -20,7 +20,7 @@
#ifndef MPD_DECODER_INTERNAL_HXX
#define MPD_DECODER_INTERNAL_HXX
#include "
decoder_command.h
"
#include "
DecoderCommand.hxx
"
#include "pcm/PcmConvert.hxx"
#include "replay_gain_info.h"
...
...
src/DecoderList.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "DecoderList.hxx"
#include "
decoder_plugin.h
"
#include "
DecoderPlugin.hxx
"
#include "conf.h"
#include "mpd_error.h"
#include "decoder/AudiofileDecoderPlugin.hxx"
...
...
src/DecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -18,7 +18,7 @@
*/
#include "config.h"
#include "
decoder_plugin.h
"
#include "
DecoderPlugin.hxx
"
#include "util/StringUtil.hxx"
#include <assert.h>
...
...
src/
decoder_plugin.h
→
src/
DecoderPlugin.hxx
View file @
43f613d9
/*
* Copyright (C) 2003-201
1
The Music Player Daemon Project
* Copyright (C) 2003-201
3
The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_DECODER_PLUGIN_H
#define MPD_DECODER_PLUGIN_H
#ifndef MPD_DECODER_PLUGIN_H
XX
#define MPD_DECODER_PLUGIN_H
XX
#include <stdbool.h>
#include <stddef.h>
...
...
src/DecoderPrint.cxx
View file @
43f613d9
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "DecoderPrint.hxx"
#include "DecoderList.hxx"
#include "
decoder_plugin.h
"
#include "
DecoderPlugin.hxx
"
#include "Client.hxx"
#include <assert.h>
...
...
src/DecoderThread.cxx
View file @
43f613d9
...
...
@@ -21,13 +21,13 @@
#include "DecoderThread.hxx"
#include "DecoderControl.hxx"
#include "DecoderInternal.hxx"
#include "
decoder_error.h
"
#include "
decoder_plugin.h
"
#include "
DecoderError.hxx
"
#include "
DecoderPlugin.hxx
"
#include "song.h"
#include "mpd_error.h"
#include "Mapper.hxx"
#include "fs/Path.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "tag.h"
#include "InputStream.hxx"
#include "DecoderList.hxx"
...
...
src/SongUpdate.cxx
View file @
43f613d9
...
...
@@ -30,7 +30,7 @@ extern "C" {
#include "fs/FileSystem.hxx"
#include "tag.h"
#include "input_stream.h"
#include "
decoder_plugin.h
"
#include "
DecoderPlugin.hxx
"
#include "DecoderList.hxx"
extern
"C"
{
...
...
src/TagFile.cxx
View file @
43f613d9
...
...
@@ -21,7 +21,7 @@
#include "TagFile.hxx"
#include "util/UriUtil.hxx"
#include "DecoderList.hxx"
#include "
decoder_plugin.h
"
#include "
DecoderPlugin.hxx
"
#include "input_stream.h"
#include <assert.h>
...
...
src/UpdateContainer.cxx
View file @
43f613d9
...
...
@@ -24,7 +24,7 @@
#include "DatabaseLock.hxx"
#include "Directory.hxx"
#include "song.h"
#include "
decoder_plugin.h
"
#include "
DecoderPlugin.hxx
"
#include "Mapper.hxx"
#include "fs/Path.hxx"
...
...
src/UpdateSong.cxx
View file @
43f613d9
...
...
@@ -26,7 +26,7 @@
#include "DatabaseLock.hxx"
#include "Directory.hxx"
#include "song.h"
#include "
decoder_plugin.h
"
#include "
DecoderPlugin.hxx
"
#include "DecoderList.hxx"
#include <glib.h>
...
...
src/decoder/AdPlugDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "AdPlugDecoderPlugin.h"
#include "tag_handler.h"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
extern
"C"
{
#include "audio_check.h"
...
...
src/decoder/AudiofileDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "AudiofileDecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "audio_check.h"
#include "tag_handler.h"
...
...
src/decoder/DsdLib.cxx
View file @
43f613d9
...
...
@@ -25,7 +25,7 @@
#include "config.h"
#include "DsdLib.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "util/bit_reverse.h"
#include "tag_handler.h"
...
...
src/decoder/DsdiffDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -28,7 +28,7 @@
#include "config.h"
#include "DsdiffDecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "audio_check.h"
#include "util/bit_reverse.h"
#include "tag_handler.h"
...
...
src/decoder/DsfDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -29,7 +29,7 @@
#include "config.h"
#include "DsfDecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "audio_check.h"
#include "util/bit_reverse.h"
#include "DsdLib.hxx"
...
...
src/decoder/FaadDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "FaadDecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "DecoderBuffer.hxx"
#include "audio_check.h"
#include "tag_handler.h"
...
...
src/decoder/FfmpegDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -22,7 +22,7 @@
#include "config.h"
#include "FfmpegDecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "FfmpegMetaData.hxx"
#include "tag_handler.h"
#include "InputStream.hxx"
...
...
src/decoder/FlacCommon.hxx
View file @
43f613d9
...
...
@@ -25,7 +25,7 @@
#define MPD_FLAC_COMMON_HXX
#include "FlacInput.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
extern
"C"
{
#include "pcm/pcm_buffer.h"
...
...
src/decoder/FlacInput.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "FlacInput.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "gcc.h"
#include "InputStream.hxx"
...
...
src/decoder/FluidsynthDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "FluidsynthDecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "audio_check.h"
#include "conf.h"
...
...
src/decoder/GmeDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "GmeDecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "audio_check.h"
#include "tag_handler.h"
#include "util/UriUtil.hxx"
...
...
src/decoder/MadDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "MadDecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "conf.h"
extern
"C"
{
...
...
src/decoder/MikmodDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "MikmodDecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "mpd_error.h"
#include "tag_handler.h"
...
...
src/decoder/ModplugDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "ModplugDecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "tag_handler.h"
#include <glib.h>
...
...
src/decoder/MpcdecDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "MpcdecDecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "audio_check.h"
#include "tag_handler.h"
...
...
src/decoder/Mpg123DecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
/* must be first for large file support */
#include "Mpg123DecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "audio_check.h"
#include "tag_handler.h"
...
...
src/decoder/OggCodec.hxx
View file @
43f613d9
...
...
@@ -24,7 +24,7 @@
#ifndef MPD_OGG_CODEC_HXX
#define MPD_OGG_CODEC_HXX
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
enum
ogg_codec
{
OGG_CODEC_UNKNOWN
,
...
...
src/decoder/OggUtil.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "OggUtil.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
bool
OggFeed
(
ogg_sync_state
&
oy
,
struct
decoder
*
decoder
,
...
...
src/decoder/OpusDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -24,7 +24,7 @@
#include "OggUtil.hxx"
#include "OggFind.hxx"
#include "OggSyncState.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "OggCodec.hxx"
#include "audio_check.h"
#include "tag_handler.h"
...
...
src/decoder/PcmDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "decoder/PcmDecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
extern
"C"
{
#include "util/byte_reverse.h"
...
...
src/decoder/SndfileDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "SndfileDecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "audio_check.h"
#include "tag_handler.h"
...
...
src/decoder/VorbisDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "VorbisDecoderPlugin.h"
#include "VorbisComments.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "InputStream.hxx"
#include "OggCodec.hxx"
#include "util/UriUtil.hxx"
...
...
src/decoder/WavpackDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "WavpackDecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "InputStream.hxx"
extern
"C"
{
...
...
src/decoder/WildmidiDecoderPlugin.cxx
View file @
43f613d9
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "WildmidiDecoderPlugin.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "tag_handler.h"
#include "glib_compat.h"
...
...
src/decoder/sidplay_decoder_plugin.cxx
View file @
43f613d9
...
...
@@ -18,7 +18,7 @@
*/
#include "config.h"
#include "../
decoder_api.h
"
#include "../
DecoderAPI.hxx
"
extern
"C"
{
#include "tag_handler.h"
...
...
test/dump_playlist.cxx
View file @
43f613d9
...
...
@@ -23,7 +23,7 @@
#include "Directory.hxx"
#include "input_stream.h"
#include "conf.h"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "DecoderList.hxx"
#include "InputInit.hxx"
#include "IOThread.hxx"
...
...
test/read_tags.cxx
View file @
43f613d9
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "IOThread.hxx"
#include "DecoderList.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "InputInit.hxx"
#include "InputStream.hxx"
#include "audio_format.h"
...
...
test/run_decoder.cxx
View file @
43f613d9
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "IOThread.hxx"
#include "DecoderList.hxx"
#include "
decoder_api.h
"
#include "
DecoderAPI.hxx
"
#include "InputInit.hxx"
#include "input_stream.h"
#include "audio_format.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment