mirror of https://git.ffmpeg.org/ffmpeg.git
Factor out variable declaration
Originally committed as revision 20818 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a4914ac708
commit
851ef8755b
|
@ -131,6 +131,7 @@ static int rm_read_audio_stream_info(AVFormatContext *s, ByteIOContext *pb,
|
||||||
st->codec->codec_id = CODEC_ID_RA_144;
|
st->codec->codec_id = CODEC_ID_RA_144;
|
||||||
} else {
|
} else {
|
||||||
int flavor, sub_packet_h, coded_framesize, sub_packet_size;
|
int flavor, sub_packet_h, coded_framesize, sub_packet_size;
|
||||||
|
int codecdata_length;
|
||||||
/* old version (4) */
|
/* old version (4) */
|
||||||
get_be32(pb); /* .ra4 */
|
get_be32(pb); /* .ra4 */
|
||||||
get_be32(pb); /* data size */
|
get_be32(pb); /* data size */
|
||||||
|
@ -176,7 +177,6 @@ static int rm_read_audio_stream_info(AVFormatContext *s, ByteIOContext *pb,
|
||||||
|
|
||||||
av_new_packet(&ast->pkt, ast->audio_framesize * sub_packet_h);
|
av_new_packet(&ast->pkt, ast->audio_framesize * sub_packet_h);
|
||||||
} else if ((!strcmp(buf, "cook")) || (!strcmp(buf, "atrc")) || (!strcmp(buf, "sipr"))) {
|
} else if ((!strcmp(buf, "cook")) || (!strcmp(buf, "atrc")) || (!strcmp(buf, "sipr"))) {
|
||||||
int codecdata_length;
|
|
||||||
get_be16(pb); get_byte(pb);
|
get_be16(pb); get_byte(pb);
|
||||||
if (((version >> 16) & 0xff) == 5)
|
if (((version >> 16) & 0xff) == 5)
|
||||||
get_byte(pb);
|
get_byte(pb);
|
||||||
|
@ -216,7 +216,6 @@ static int rm_read_audio_stream_info(AVFormatContext *s, ByteIOContext *pb,
|
||||||
|
|
||||||
av_new_packet(&ast->pkt, ast->audio_framesize * sub_packet_h);
|
av_new_packet(&ast->pkt, ast->audio_framesize * sub_packet_h);
|
||||||
} else if (!strcmp(buf, "raac") || !strcmp(buf, "racp")) {
|
} else if (!strcmp(buf, "raac") || !strcmp(buf, "racp")) {
|
||||||
int codecdata_length;
|
|
||||||
get_be16(pb); get_byte(pb);
|
get_be16(pb); get_byte(pb);
|
||||||
if (((version >> 16) & 0xff) == 5)
|
if (((version >> 16) & 0xff) == 5)
|
||||||
get_byte(pb);
|
get_byte(pb);
|
||||||
|
|
Loading…
Reference in New Issue