summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_aiff.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/demuxers/demux_aiff.c')
-rw-r--r--src/demuxers/demux_aiff.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/demuxers/demux_aiff.c b/src/demuxers/demux_aiff.c
index 273992f64..ee45963a5 100644
--- a/src/demuxers/demux_aiff.c
+++ b/src/demuxers/demux_aiff.c
@@ -139,7 +139,7 @@ static int open_aiff_file(demux_aiff_t *this) {
}
chunk_type = _X_BE_32(&preamble[0]);
chunk_size = _X_BE_32(&preamble[4]);
-
+
if (chunk_type == COMM_TAG) {
unsigned char buffer[100];
@@ -174,7 +174,7 @@ static int open_aiff_file(demux_aiff_t *this) {
(this->audio_bits / 8);
this->running_time = (this->audio_frames / this->audio_sample_rate) * 1000;
- /* we should send only complete frames to decoder, as it
+ /* we should send only complete frames to decoder, as it
* doesn't handle underconsumption yet */
this->audio_block_align = PCM_BLOCK_ALIGN - PCM_BLOCK_ALIGN % (this->audio_bits / 8 * this->audio_channels);
@@ -210,7 +210,7 @@ static int demux_aiff_send_chunk (demux_plugin_t *this_gen) {
/* just load data chunks from wherever the stream happens to be
* pointing; issue a DEMUX_FINISHED status if EOF is reached */
remaining_sample_bytes = this->audio_block_align;
- current_file_pos =
+ current_file_pos =
this->input->get_current_pos(this->input) - this->data_start;
current_pts = current_file_pos;
@@ -258,7 +258,7 @@ static int demux_aiff_send_chunk (demux_plugin_t *this_gen) {
this->audio_fifo->put (this->audio_fifo, buf);
}
-
+
return this->status;
}