[FFmpeg-cvslog] r20818 - trunk/libavformat/rmdec.c
kostya
subversion
Sun Dec 13 09:44:07 CET 2009
Author: kostya
Date: Sun Dec 13 09:44:06 2009
New Revision: 20818
Log:
Factor out variable declaration
Modified:
trunk/libavformat/rmdec.c
Modified: trunk/libavformat/rmdec.c
==============================================================================
--- trunk/libavformat/rmdec.c Sat Dec 12 21:18:49 2009 (r20817)
+++ trunk/libavformat/rmdec.c Sun Dec 13 09:44:06 2009 (r20818)
@@ -131,6 +131,7 @@ static int rm_read_audio_stream_info(AVF
st->codec->codec_id = CODEC_ID_RA_144;
} else {
int flavor, sub_packet_h, coded_framesize, sub_packet_size;
+ int codecdata_length;
/* old version (4) */
get_be32(pb); /* .ra4 */
get_be32(pb); /* data size */
@@ -176,7 +177,6 @@ static int rm_read_audio_stream_info(AVF
av_new_packet(&ast->pkt, ast->audio_framesize * sub_packet_h);
} else if ((!strcmp(buf, "cook")) || (!strcmp(buf, "atrc")) || (!strcmp(buf, "sipr"))) {
- int codecdata_length;
get_be16(pb); get_byte(pb);
if (((version >> 16) & 0xff) == 5)
get_byte(pb);
@@ -216,7 +216,6 @@ static int rm_read_audio_stream_info(AVF
av_new_packet(&ast->pkt, ast->audio_framesize * sub_packet_h);
} else if (!strcmp(buf, "raac") || !strcmp(buf, "racp")) {
- int codecdata_length;
get_be16(pb); get_byte(pb);
if (((version >> 16) & 0xff) == 5)
get_byte(pb);
More information about the ffmpeg-cvslog
mailing list