You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
10l: Include missing return values in functions made non-void by the previous commit.
Originally committed as revision 22376 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -873,6 +873,8 @@ static int read_sbr_single_channel_element(AACContext *ac,
|
|||||||
|
|
||||||
if ((sbr->data[0].bs_add_harmonic_flag = get_bits1(gb)))
|
if ((sbr->data[0].bs_add_harmonic_flag = get_bits1(gb)))
|
||||||
get_bits1_vector(gb, sbr->data[0].bs_add_harmonic, sbr->n[1]);
|
get_bits1_vector(gb, sbr->data[0].bs_add_harmonic, sbr->n[1]);
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int read_sbr_channel_pair_element(AACContext *ac,
|
static int read_sbr_channel_pair_element(AACContext *ac,
|
||||||
@@ -913,6 +915,8 @@ static int read_sbr_channel_pair_element(AACContext *ac,
|
|||||||
get_bits1_vector(gb, sbr->data[0].bs_add_harmonic, sbr->n[1]);
|
get_bits1_vector(gb, sbr->data[0].bs_add_harmonic, sbr->n[1]);
|
||||||
if ((sbr->data[1].bs_add_harmonic_flag = get_bits1(gb)))
|
if ((sbr->data[1].bs_add_harmonic_flag = get_bits1(gb)))
|
||||||
get_bits1_vector(gb, sbr->data[1].bs_add_harmonic, sbr->n[1]);
|
get_bits1_vector(gb, sbr->data[1].bs_add_harmonic, sbr->n[1]);
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned int read_sbr_data(AACContext *ac, SpectralBandReplication *sbr,
|
static unsigned int read_sbr_data(AACContext *ac, SpectralBandReplication *sbr,
|
||||||
|
Reference in New Issue
Block a user