Skip to content

Commit b18eee9

Browse files
only re-indent
1 parent f3e5d84 commit b18eee9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/AvTranscoder/OutputStreamAudio.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ bool OutputStreamAudio::encodeFrame( const AudioFrame& decodedFrame, DataStream&
5151
#endif
5252

5353
frame->nb_samples = decodedFrame.getNbSamples();
54-
frame->format = codecContext->sample_fmt;
55-
frame->channel_layout = codecContext->channel_layout;
54+
frame->format = codecContext->sample_fmt;
55+
frame->channel_layout = codecContext->channel_layout;
5656

57-
// we calculate the size of the samples buffer in bytes
57+
// we calculate the size of the samples buffer in bytes
5858
int buffer_size = av_samples_get_buffer_size(NULL, codecContext->channels, frame->nb_samples, codecContext->sample_fmt, 0);
5959
if( buffer_size < 0 )
6060
{
@@ -160,4 +160,4 @@ bool OutputStreamAudio::encodeFrame( DataStream& codedFrame )
160160
#endif
161161
}
162162

163-
}
163+
}

0 commit comments

Comments
 (0)