diff options
Diffstat (limited to 'src/input/libdvdread/ifo_print.c')
| -rw-r--r-- | src/input/libdvdread/ifo_print.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/input/libdvdread/ifo_print.c b/src/input/libdvdread/ifo_print.c index 716f6897f..ab96f9373 100644 --- a/src/input/libdvdread/ifo_print.c +++ b/src/input/libdvdread/ifo_print.c @@ -25,7 +25,7 @@ #include <ctype.h> #include <assert.h> -#include "config.h" // Needed for WORDS_BIGENDIAN +#include "config.h" /* Needed for WORDS_BIGENDIAN */ #include "ifo_types.h" #include "ifo_read.h" #include "ifo_print.h" @@ -71,7 +71,7 @@ static void ifoPrint_CMD(int row, vm_cmd_t *command) { printf("%02x ", command->bytes[i]); printf("| "); - //vmcmd(command); + /* )vmcmd(command); */ printf("\n"); } @@ -126,19 +126,19 @@ static void ifoPrint_video_attributes(int level, video_attr_t *attr) { printf("(please send a bug report) "); } - // Wide is allways allowed..!!! + /* Wide is allways allowed..!!! */ switch(attr->permitted_df) { case 0: printf("pan&scan+letterboxed "); break; case 1: - printf("only pan&scan "); //?? + printf("only pan&scan "); /* ?? */ break; case 2: printf("only letterboxed "); break; case 3: - // not specified + /* not specified */ break; default: printf("(please send a bug report)"); @@ -184,7 +184,7 @@ static void ifoPrint_video_attributes(int level, video_attr_t *attr) { if(attr->film_mode) { printf("film"); } else { - printf("video"); //camera + printf("video"); /* camera */ } } @@ -235,7 +235,7 @@ static void ifoPrint_audio_attributes(int level, audio_attr_t *attr) { switch(attr->lang_type) { case 0: - // not specified + /* not specified */ assert(attr->lang_code == 0 || attr->lang_code == 0xffff); break; case 1: @@ -247,7 +247,7 @@ static void ifoPrint_audio_attributes(int level, audio_attr_t *attr) { switch(attr->application_mode) { case 0: - // not specified + /* not specified */ break; case 1: printf("karaoke mode "); @@ -294,19 +294,19 @@ static void ifoPrint_audio_attributes(int level, audio_attr_t *attr) { case 0: printf("Not specified "); break; - case 1: // Normal audio + case 1: /* Normal audio */ printf("Normal Caption "); break; - case 2: // visually imparied + case 2: /* visually imparied */ printf("Audio for visually impaired "); break; - case 3: // Directors 1 + case 3: /* Directors 1 */ printf("Director's comments 1 "); break; - case 4: // Directors 2 + case 4: /* Directors 2 */ printf("Director's comments 2 "); break; - //case 4: // Music score ? + /* case 4: Music score ? */ default: printf("(please send a bug report) "); } @@ -796,7 +796,7 @@ void ifoPrint_PTL_MAIT(ptl_mait_t *ptl_mait) { printf("Number of Countries: %i\n", ptl_mait->nr_of_countries); printf("Number of VTSs: %i\n", ptl_mait->nr_of_vtss); - //printf("Last byte: %i\n", ptl_mait->last_byte); + /* printf("Last byte: %i\n", ptl_mait->last_byte); */ for(i = 0; i < ptl_mait->nr_of_countries; i++) { printf("Country code: %c%c\n", @@ -825,7 +825,7 @@ void ifoPrint_C_ADT(c_adt_t *c_adt) { int i, entries; printf("Number of VOBs in this VOBS: %i\n", c_adt->nr_of_vobs); - //entries = c_adt->nr_of_vobs; + /* entries = c_adt->nr_of_vobs; */ entries = (c_adt->last_byte + 1 - C_ADT_SIZE)/sizeof(c_adt_t); for(i = 0; i < entries; i++) { @@ -975,7 +975,7 @@ void ifoPrint(dvd_reader_t *dvd, int title) { printf("\nText Data Manager Information\n"); printf( "-----------------------------\n"); if(ifohandle->txtdt_mgi) { - //ifoPrint_TXTDT_MGI(&(vmgi->txtdt_mgi)); + /* ifoPrint_TXTDT_MGI(&(vmgi->txtdt_mgi)); */ } else { printf("No Text Data Manager Information present\n"); } |
