mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-12-18 00:46:51 +00:00
Fix instances of broken indentation found by gcc 6
This commit is contained in:
parent
5ed4644d6d
commit
5ebef79abe
@ -542,8 +542,8 @@ void ff_ivi_inverse_slant_8x8(const int32_t *in, int16_t *out, uint32_t pitch, c
|
||||
} else
|
||||
dst[0] = dst[8] = dst[16] = dst[24] = dst[32] = dst[40] = dst[48] = dst[56] = 0;
|
||||
|
||||
src++;
|
||||
dst++;
|
||||
src++;
|
||||
dst++;
|
||||
}
|
||||
#undef COMPENSATE
|
||||
|
||||
@ -582,8 +582,8 @@ void ff_ivi_inverse_slant_4x4(const int32_t *in, int16_t *out, uint32_t pitch, c
|
||||
} else
|
||||
dst[0] = dst[4] = dst[8] = dst[12] = 0;
|
||||
|
||||
src++;
|
||||
dst++;
|
||||
src++;
|
||||
dst++;
|
||||
}
|
||||
#undef COMPENSATE
|
||||
|
||||
|
@ -548,7 +548,7 @@ do {\
|
||||
av_fast_malloc(&s->bitstream_buffer,
|
||||
&s->allocated_bitstream_buffer_size,
|
||||
s1->allocated_bitstream_buffer_size);
|
||||
s->bitstream_buffer_size = s1->bitstream_buffer_size;
|
||||
s->bitstream_buffer_size = s1->bitstream_buffer_size;
|
||||
memcpy(s->bitstream_buffer, s1->bitstream_buffer,
|
||||
s1->bitstream_buffer_size);
|
||||
memset(s->bitstream_buffer + s->bitstream_buffer_size, 0,
|
||||
@ -850,10 +850,10 @@ av_cold int ff_mpv_common_init(MpegEncContext *s)
|
||||
for (i = 0; i < nb_slices; i++) {
|
||||
if (init_duplicate_context(s->thread_context[i]) < 0)
|
||||
goto fail;
|
||||
s->thread_context[i]->start_mb_y =
|
||||
(s->mb_height * (i) + nb_slices / 2) / nb_slices;
|
||||
s->thread_context[i]->end_mb_y =
|
||||
(s->mb_height * (i + 1) + nb_slices / 2) / nb_slices;
|
||||
s->thread_context[i]->start_mb_y =
|
||||
(s->mb_height * (i) + nb_slices / 2) / nb_slices;
|
||||
s->thread_context[i]->end_mb_y =
|
||||
(s->mb_height * (i + 1) + nb_slices / 2) / nb_slices;
|
||||
}
|
||||
} else {
|
||||
if (init_duplicate_context(s) < 0)
|
||||
@ -974,10 +974,10 @@ int ff_mpv_common_frame_size_change(MpegEncContext *s)
|
||||
for (i = 0; i < nb_slices; i++) {
|
||||
if ((err = init_duplicate_context(s->thread_context[i])) < 0)
|
||||
goto fail;
|
||||
s->thread_context[i]->start_mb_y =
|
||||
(s->mb_height * (i) + nb_slices / 2) / nb_slices;
|
||||
s->thread_context[i]->end_mb_y =
|
||||
(s->mb_height * (i + 1) + nb_slices / 2) / nb_slices;
|
||||
s->thread_context[i]->start_mb_y =
|
||||
(s->mb_height * (i) + nb_slices / 2) / nb_slices;
|
||||
s->thread_context[i]->end_mb_y =
|
||||
(s->mb_height * (i + 1) + nb_slices / 2) / nb_slices;
|
||||
}
|
||||
} else {
|
||||
if (init_duplicate_context(s) < 0)
|
||||
|
@ -722,67 +722,68 @@ static void fill_coding_method_array(sb_int8_array tone_level_idx,
|
||||
}
|
||||
tone_level_idx_temp[ch][sb][0] = tone_level_idx_temp[ch][sb][1];
|
||||
}
|
||||
acc = 0;
|
||||
for (ch = 0; ch < nb_channels; ch++)
|
||||
for (sb = 0; sb < 30; sb++)
|
||||
for (j = 0; j < 64; j++)
|
||||
acc += tone_level_idx_temp[ch][sb][j];
|
||||
|
||||
multres = 0x66666667LL * (acc * 10);
|
||||
esp_40 = (multres >> 32) / 8 + ((multres & 0xffffffff) >> 31);
|
||||
for (ch = 0; ch < nb_channels; ch++)
|
||||
for (sb = 0; sb < 30; sb++)
|
||||
for (j = 0; j < 64; j++) {
|
||||
comp = tone_level_idx_temp[ch][sb][j]* esp_40 * 10;
|
||||
if (comp < 0)
|
||||
comp += 0xff;
|
||||
comp /= 256; // signed shift
|
||||
switch(sb) {
|
||||
case 0:
|
||||
if (comp < 30)
|
||||
comp = 30;
|
||||
comp += 15;
|
||||
break;
|
||||
case 1:
|
||||
if (comp < 24)
|
||||
comp = 24;
|
||||
comp += 10;
|
||||
break;
|
||||
case 2:
|
||||
case 3:
|
||||
case 4:
|
||||
if (comp < 16)
|
||||
comp = 16;
|
||||
}
|
||||
if (comp <= 5)
|
||||
tmp = 0;
|
||||
else if (comp <= 10)
|
||||
tmp = 10;
|
||||
else if (comp <= 16)
|
||||
tmp = 16;
|
||||
else if (comp <= 24)
|
||||
tmp = -1;
|
||||
else
|
||||
tmp = 0;
|
||||
coding_method[ch][sb][j] = ((tmp & 0xfffa) + 30 )& 0xff;
|
||||
}
|
||||
acc = 0;
|
||||
for (ch = 0; ch < nb_channels; ch++)
|
||||
for (sb = 0; sb < 30; sb++)
|
||||
fix_coding_method_array(sb, nb_channels, coding_method);
|
||||
for (ch = 0; ch < nb_channels; ch++)
|
||||
for (sb = 0; sb < 30; sb++)
|
||||
for (j = 0; j < 64; j++)
|
||||
if (sb >= 10) {
|
||||
if (coding_method[ch][sb][j] < 10)
|
||||
coding_method[ch][sb][j] = 10;
|
||||
for (j = 0; j < 64; j++)
|
||||
acc += tone_level_idx_temp[ch][sb][j];
|
||||
|
||||
multres = 0x66666667LL * (acc * 10);
|
||||
esp_40 = (multres >> 32) / 8 + ((multres & 0xffffffff) >> 31);
|
||||
for (ch = 0; ch < nb_channels; ch++)
|
||||
for (sb = 0; sb < 30; sb++)
|
||||
for (j = 0; j < 64; j++) {
|
||||
comp = tone_level_idx_temp[ch][sb][j]* esp_40 * 10;
|
||||
if (comp < 0)
|
||||
comp += 0xff;
|
||||
comp /= 256; // signed shift
|
||||
switch(sb) {
|
||||
case 0:
|
||||
if (comp < 30)
|
||||
comp = 30;
|
||||
comp += 15;
|
||||
break;
|
||||
case 1:
|
||||
if (comp < 24)
|
||||
comp = 24;
|
||||
comp += 10;
|
||||
break;
|
||||
case 2:
|
||||
case 3:
|
||||
case 4:
|
||||
if (comp < 16)
|
||||
comp = 16;
|
||||
}
|
||||
if (comp <= 5)
|
||||
tmp = 0;
|
||||
else if (comp <= 10)
|
||||
tmp = 10;
|
||||
else if (comp <= 16)
|
||||
tmp = 16;
|
||||
else if (comp <= 24)
|
||||
tmp = -1;
|
||||
else
|
||||
tmp = 0;
|
||||
coding_method[ch][sb][j] = ((tmp & 0xfffa) + 30 )& 0xff;
|
||||
}
|
||||
for (sb = 0; sb < 30; sb++)
|
||||
fix_coding_method_array(sb, nb_channels, coding_method);
|
||||
for (ch = 0; ch < nb_channels; ch++)
|
||||
for (sb = 0; sb < 30; sb++)
|
||||
for (j = 0; j < 64; j++)
|
||||
if (sb >= 10) {
|
||||
if (coding_method[ch][sb][j] < 10)
|
||||
coding_method[ch][sb][j] = 10;
|
||||
} else {
|
||||
if (sb >= 2) {
|
||||
if (coding_method[ch][sb][j] < 16)
|
||||
coding_method[ch][sb][j] = 16;
|
||||
} else {
|
||||
if (sb >= 2) {
|
||||
if (coding_method[ch][sb][j] < 16)
|
||||
coding_method[ch][sb][j] = 16;
|
||||
} else {
|
||||
if (coding_method[ch][sb][j] < 30)
|
||||
coding_method[ch][sb][j] = 30;
|
||||
}
|
||||
if (coding_method[ch][sb][j] < 30)
|
||||
coding_method[ch][sb][j] = 30;
|
||||
}
|
||||
}
|
||||
} else { // superblocktype_2_3 != 0
|
||||
for (ch = 0; ch < nb_channels; ch++)
|
||||
for (sb = 0; sb < 30; sb++)
|
||||
|
@ -2479,8 +2479,8 @@ static int mxf_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
if ((ret64 = avio_seek(s->pb, pos, SEEK_SET)) < 0)
|
||||
return ret64;
|
||||
|
||||
if ((ret = av_get_packet(s->pb, pkt, size)) != size)
|
||||
return ret < 0 ? ret : AVERROR_EOF;
|
||||
if ((ret = av_get_packet(s->pb, pkt, size)) != size)
|
||||
return ret < 0 ? ret : AVERROR_EOF;
|
||||
|
||||
pkt->stream_index = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user