You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
swresample: fix broken indent.
This commit is contained in:
committed by
Clément Bœsch
parent
0a23067ab4
commit
9719f25e7b
@@ -227,8 +227,8 @@ int swr_rematrix_init(SwrContext *s){
|
|||||||
int swr_rematrix(SwrContext *s, AudioData *out, AudioData *in, int len, int mustcopy){
|
int swr_rematrix(SwrContext *s, AudioData *out, AudioData *in, int len, int mustcopy){
|
||||||
int out_i, in_i, i, j;
|
int out_i, in_i, i, j;
|
||||||
|
|
||||||
av_assert0(out->ch_count == av_get_channel_layout_nb_channels(s->out_ch_layout));
|
av_assert0(out->ch_count == av_get_channel_layout_nb_channels(s->out_ch_layout));
|
||||||
av_assert0(in ->ch_count == av_get_channel_layout_nb_channels(s-> in_ch_layout));
|
av_assert0(in ->ch_count == av_get_channel_layout_nb_channels(s-> in_ch_layout));
|
||||||
|
|
||||||
for(out_i=0; out_i<out->ch_count; out_i++){
|
for(out_i=0; out_i<out->ch_count; out_i++){
|
||||||
switch(s->matrix_ch[out_i][0]){
|
switch(s->matrix_ch[out_i][0]){
|
||||||
|
Reference in New Issue
Block a user