Browse Source

Do not show CRC if it is 0xffffffff

Georgi Chorbadzhiyski 13 years ago
parent
commit
a32a62f6d7
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      tsfuncs_sections.c

+ 1
- 1
tsfuncs_sections.c View File

142
 				t->section_number,
142
 				t->section_number,
143
 				t->last_section_number);
143
 				t->last_section_number);
144
 	}
144
 	}
145
-	if (t->CRC)
145
+	if (t->CRC && t->CRC != 0xffffffff)
146
 		ts_LOGf("    - CRC                : 0x%08x\n", t->CRC);
146
 		ts_LOGf("    - CRC                : 0x%08x\n", t->CRC);
147
 }
147
 }
148
 
148
 

Loading…
Cancel
Save