[FFmpeg-cvslog] r10793 - trunk/libavformat/electronicarts.c
aurel
subversion
Fri Oct 19 00:27:27 CEST 2007
Author: aurel
Date: Fri Oct 19 00:27:27 2007
New Revision: 10793
Log:
cosmetics: indentation
Modified:
trunk/libavformat/electronicarts.c
Modified: trunk/libavformat/electronicarts.c
==============================================================================
--- trunk/libavformat/electronicarts.c (original)
+++ trunk/libavformat/electronicarts.c Fri Oct 19 00:27:27 2007
@@ -167,20 +167,19 @@ static int process_ea_header(AVFormatCon
for (i=0; i<5 && (!ea->audio_codec || !ea->video_codec); i++) {
unsigned int startpos = url_ftell(pb);
- blockid = get_le32(pb);
+ blockid = get_le32(pb);
size = get_le32(pb);
switch (blockid) {
case SCHl_TAG :
- blockid = get_le32(pb);
- if (blockid == GSTR_TAG) {
- url_fskip(pb, 4);
- } else if (blockid != PT00_TAG) {
- av_log (s, AV_LOG_ERROR, "unknown SCHl headerid\n");
- return 0;
- }
-
- process_audio_header_elements(s);
+ blockid = get_le32(pb);
+ if (blockid == GSTR_TAG) {
+ url_fskip(pb, 4);
+ } else if (blockid != PT00_TAG) {
+ av_log (s, AV_LOG_ERROR, "unknown SCHl headerid\n");
+ return 0;
+ }
+ process_audio_header_elements(s);
break;
case MVhd_TAG :
More information about the ffmpeg-cvslog
mailing list