codec_kit: Style fixes

* Remove superfluous newlines at EOF.
* Add newlines in file's head.
This commit is contained in:
Barrett17
2018-10-28 16:26:27 +01:00
parent 8ccd9c0741
commit 5e4fd31ed7
8 changed files with 9 additions and 6 deletions
+1
View File
@@ -4,6 +4,7 @@
* *
*/ */
#include "AdapterIO.h" #include "AdapterIO.h"
#include <MediaIO.h> #include <MediaIO.h>
+2 -2
View File
@@ -3,6 +3,7 @@
* Distributed under the terms of the MIT License. * Distributed under the terms of the MIT License.
*/ */
#include "DecoderPlugin.h" #include "DecoderPlugin.h"
#include <stdio.h> #include <stdio.h>
@@ -47,14 +48,13 @@ Decoder::Perform(perform_code code, void* _data)
return B_OK; return B_OK;
} }
void Decoder::_ReservedDecoder1() {} void Decoder::_ReservedDecoder1() {}
void Decoder::_ReservedDecoder2() {} void Decoder::_ReservedDecoder2() {}
void Decoder::_ReservedDecoder3() {} void Decoder::_ReservedDecoder3() {}
void Decoder::_ReservedDecoder4() {} void Decoder::_ReservedDecoder4() {}
void Decoder::_ReservedDecoder5() {} void Decoder::_ReservedDecoder5() {}
// #pragma mark -
DecoderPlugin::DecoderPlugin() DecoderPlugin::DecoderPlugin()
{ {
+1
View File
@@ -4,6 +4,7 @@
* Distributed under the terms of the MIT License. * Distributed under the terms of the MIT License.
*/ */
#include "EncoderPlugin.h" #include "EncoderPlugin.h"
#include <stdio.h> #include <stdio.h>
+1
View File
@@ -4,6 +4,7 @@
* *
*/ */
#include <MediaIO.h> #include <MediaIO.h>
-2
View File
@@ -18,7 +18,6 @@
#include "PluginManager.h" #include "PluginManager.h"
class MediaExtractorChunkWriter : public ChunkWriter { class MediaExtractorChunkWriter : public ChunkWriter {
public: public:
MediaExtractorChunkWriter(MediaWriter* writer, int32 streamIndex) MediaExtractorChunkWriter(MediaWriter* writer, int32 streamIndex)
@@ -235,4 +234,3 @@ MediaWriter::WriteChunk(int32 streamIndex, const void* chunkBuffer,
return fWriter->WriteChunk(info->cookie, chunkBuffer, chunkSize, return fWriter->WriteChunk(info->cookie, chunkBuffer, chunkSize,
encodeInfo); encodeInfo);
} }
+1 -1
View File
@@ -6,6 +6,7 @@
* Distributed under the terms of the MIT License. * Distributed under the terms of the MIT License.
*/ */
#include "ReaderPlugin.h" #include "ReaderPlugin.h"
#include <stdio.h> #include <stdio.h>
@@ -78,4 +79,3 @@ void Reader::_ReservedReader2() {}
void Reader::_ReservedReader3() {} void Reader::_ReservedReader3() {}
void Reader::_ReservedReader4() {} void Reader::_ReservedReader4() {}
void Reader::_ReservedReader5() {} void Reader::_ReservedReader5() {}
+1
View File
@@ -3,6 +3,7 @@
* Distributed under the terms of the MIT License. * Distributed under the terms of the MIT License.
*/ */
#include "StreamerPlugin.h" #include "StreamerPlugin.h"
+2 -1
View File
@@ -4,6 +4,7 @@
* Distributed under the terms of the MIT License. * Distributed under the terms of the MIT License.
*/ */
#include "WriterPlugin.h" #include "WriterPlugin.h"
#include <stdio.h> #include <stdio.h>
@@ -42,9 +43,9 @@ Writer::Perform(perform_code code, void* data)
return B_OK; return B_OK;
} }
void Writer::_ReservedWriter1() {} void Writer::_ReservedWriter1() {}
void Writer::_ReservedWriter2() {} void Writer::_ReservedWriter2() {}
void Writer::_ReservedWriter3() {} void Writer::_ReservedWriter3() {}
void Writer::_ReservedWriter4() {} void Writer::_ReservedWriter4() {}
void Writer::_ReservedWriter5() {} void Writer::_ReservedWriter5() {}