diff --git a/libmpeg3/audio/ac3.c b/libmpeg3/audio/ac3.c
index dc50e88..2c44630 100644
|
a
|
b
|
|
| 1 | 1 | #include <stdint.h> |
| 2 | 2 | #include <stdio.h> |
| | 3 | #include <stdlib.h> |
| 3 | 4 | |
| 4 | 5 | #include <a52dec/a52.h> |
| 5 | 6 | #include "mpeg3private.h" |
diff --git a/libmpeg3/audio/layer3.c b/libmpeg3/audio/layer3.c
index 8d0450d..278dc61 100644
|
a
|
b
|
|
| 5 | 5 | |
| 6 | 6 | #include <stdio.h> |
| 7 | 7 | #include <string.h> |
| | 8 | #include <stdlib.h> |
| 8 | 9 | |
| 9 | 10 | struct gr_info_s |
| 10 | 11 | { |
diff --git a/libmpeg3/mpeg3title.c b/libmpeg3/mpeg3title.c
index db08830..96207f2 100644
|
a
|
b
|
|
| 186 | 186 | { |
| 187 | 187 | cell = &title->cell_table[i]; |
| 188 | 188 | |
| 189 | | fprintf(output, "REGION: %llx-%llx %llx-%llx %f %f %d\n", |
| | 189 | fprintf(output, "REGION: %llx-%llx %llx-%llx %d\n", |
| 190 | 190 | cell->program_start, |
| 191 | 191 | cell->program_end, |
| 192 | 192 | cell->title_start, |
diff --git a/mplexlo/mplex.c b/mplexlo/mplex.c
index 8fc95f3..4543448 100644
|
a
|
b
|
|
| 1 | 1 | #include <stdio.h> |
| 2 | 2 | #include <stdlib.h> |
| | 3 | #include <string.h> |
| 3 | 4 | |
| 4 | 5 | |
| 5 | 6 | #include "libmpeg3.h" |
diff --git a/plugins/titler/title.C b/plugins/titler/title.C
index 1b9fda6..1168020 100644
|
a
|
b
|
|
| 1382 | 1382 | 0, |
| 1383 | 1383 | &freetype_face)) |
| 1384 | 1384 | { |
| 1385 | | fprintf(stderr, _("TitleMain::load_freetype_face %s failed.\n")); |
| | 1385 | fprintf(stderr, _("TitleMain::load_freetype_face %s failed.\n"), |
| | 1386 | path); |
| 1386 | 1387 | FT_Done_FreeType(freetype_library); |
| 1387 | 1388 | freetype_face = 0; |
| 1388 | 1389 | freetype_library = 0; |
diff --git a/quicktime/graphics.c b/quicktime/graphics.c
index 7225617..2600049 100644
|
a
|
b
|
|
| 1 | 1 | #include "graphics.h" |
| 2 | 2 | |
| 3 | 3 | #include <string.h> |
| | 4 | #include <stdlib.h> |
| 4 | 5 | |
| 5 | 6 | /* Graphics acceleration routines */ |
| 6 | 7 | |