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,7 +142,7 @@ void ts_section_header_dump(struct ts_section_header *t) {
142 142
 				t->section_number,
143 143
 				t->last_section_number);
144 144
 	}
145
-	if (t->CRC)
145
+	if (t->CRC && t->CRC != 0xffffffff)
146 146
 		ts_LOGf("    - CRC                : 0x%08x\n", t->CRC);
147 147
 }
148 148
 

Loading…
Cancel
Save