]> git.sesse.net Git - vlc/blobdiff - plugins/dvd/dvd_summary.c
* ./src/libvlc.c: p_vlc->pf_memset is now usable (it's always the libc
[vlc] / plugins / dvd / dvd_summary.c
index 74696525c312e9265792be09677ad9f631698ce8..45655facee7d319acdcbd32f048156047063fddb 100644 (file)
@@ -3,7 +3,7 @@
  * found in .ifo.
  *****************************************************************************
  * Copyright (C) 1998-2001 VideoLAN
- * $Id: dvd_summary.c,v 1.9 2001/11/07 17:37:16 stef Exp $
+ * $Id: dvd_summary.c,v 1.20 2002/06/01 12:31:59 sam Exp $
  *
  * Author: Stéphane Borel <stef@via.ecp.fr>
  *
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  *****************************************************************************/
 
-#define MODULE_NAME dvd
-#include "modules_inner.h"
-
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include "defs.h"
-
 #include <stdio.h>
 #include <stdlib.h>
 
+#include <vlc/vlc.h>
+
 #ifdef HAVE_UNISTD_H
-#include <unistd.h>
+#   include <unistd.h>
 #endif
 
 #if !defined( WIN32 )
-#include <netinet/in.h>
+#   include <netinet/in.h>
 #endif
 
 #include <fcntl.h>
 #ifdef GOD_DAMN_DMCA
 #   include "dummy_dvdcss.h"
 #else
-#   include <videolan/dvdcss.h>
+#   include <dvdcss/dvdcss.h>
 #endif
 
-#include "config.h"
-#include "common.h"
-#include "threads.h"
-#include "mtime.h"
-#include "iso_lang.h"
-#include "tests.h"
-
-#include "intf_msg.h"
-
-#include "main.h"
-
-#include "input_dvd.h"
+#include "dvd.h"
 #include "dvd_ifo.h"
-
-#include "debug.h"
-
-#include "modules.h"
-#include "modules_export.h"
-
+#include "iso_lang.h"
 
 /*
  * Local tools to decode some data in ifo
  ****************************************************************************/
 void IfoPrintTitle( thread_dvd_data_t * p_dvd )
 {
-    intf_WarnMsg( 5, "dvd info: title: %d", p_dvd->i_title );
-    intf_WarnMsg( 5, "    vobstart at: %d blocks", p_dvd->i_start );
-    intf_WarnMsg( 5, "    stream size: %d blocks", p_dvd->i_size );
-    intf_WarnMsg( 5, "    number of chapters: %d", p_dvd->i_chapter_nb );
-    intf_WarnMsg( 5, "    number of angles: %d", p_dvd->i_angle_nb );
+//X    intf_WarnMsg( 5, "dvd info: title %d, %d chapter%s, %d angle%s",
+//X                     p_dvd->i_title, p_dvd->i_chapter_nb,
+//X                     (p_dvd->i_chapter_nb == 1) ? "" : "s",
+//X                     p_dvd->i_angle_nb,
+//X                     (p_dvd->i_angle_nb == 1) ? "" : "s" );
 }
 
 /****************************************************************************
@@ -98,53 +79,39 @@ void IfoPrintTitle( thread_dvd_data_t * p_dvd )
 #define video p_dvd->p_ifo->vts.manager_inf.video_attr
 void IfoPrintVideo( thread_dvd_data_t * p_dvd )
 {
-    char     psz_ratio[12];
-    char     psz_perm_displ[4][23] =
-             {
-                "pan-scan & letterboxed",
-                "pan-scan",
-                "letterboxed",
-                "not specified"
-             };
-    char     psz_source_res[4][28] =
-             {
-                "720x480 ntsc or 720x576 pal",
-                "704x480 ntsc or 704x576 pal",
-                "352x480 ntsc or 352x576 pal",
-                "352x240 ntsc or 352x288 pal"
-             };
-
-    switch( video.i_ratio )
-    {
-    case 0:
-        sprintf( psz_ratio, "4:3" );
-        break;
-    case 3:
-        sprintf( psz_ratio, "16:9" );
-        break;
-    default:
-        sprintf( psz_ratio, "undef" );
-        break;
-    }
-
-    intf_WarnMsg( 5, "dvd info: video" );
-    intf_WarnMsg( 5, "    compression: mpeg-%d", video.i_compression+1 );
-    intf_WarnMsg( 5, "    tv system: %s Hz",
-                     video.i_system ? "pal 625/50" : "ntsc 525/60" );
-    intf_WarnMsg( 5, "    aspect ratio: %s", psz_ratio );
-    intf_WarnMsg( 5, "    display mode: %s",
-                     psz_perm_displ[video.i_perm_displ] );
-    intf_WarnMsg( 5, "    line21-1: %s",
-                     video.i_line21_1 ? "data present in GOP" : "" );
-    intf_WarnMsg( 5, "    line21-2: %s",
-                     video.i_line21_2 ? "data present in GOP" : "" );
-    intf_WarnMsg( 5, "    source res: %s",
-                     psz_source_res[video.i_source_res] );
-    intf_WarnMsg( 5, "    letterboxed: %s",
-                     video.i_letterboxed ? "yes" : "no" );
-    intf_WarnMsg( 5, "    mode: %s",
-                     video.i_mode ? "film (625/50 only)" : "camera");
+//X    char*    psz_perm_displ[4] =
+//X             {
+//X                "pan-scan & letterboxed",
+//X                "pan-scan",
+//X                "letterboxed",
+//X                "not specified"
+//X             };
+//X    char*    psz_source_res[4] =
+//X             {
+//X                "720x480 ntsc or 720x576 pal",
+//X                "704x480 ntsc or 704x576 pal",
+//X                "352x480 ntsc or 352x576 pal",
+//X                "352x240 ntsc or 352x288 pal"
+//X             };
+
+//X    intf_WarnMsg( 5, "dvd info: MPEG-%d video, %sHz, aspect ratio %s",
+//X                     video.i_compression + 1,
+//X                     video.i_system ? "pal 625 @50" : "ntsc 525 @60",
+//X                     video.i_ratio ? (video.i_ratio == 3) ? "16:9"
+//X                                                          : "unknown"
+//X                                   : "4:3" );
+
+//X    intf_WarnMsg( 5, "dvd info: display mode %s, %s, %s",
+//X                     psz_perm_displ[video.i_perm_displ],
+//X                     video.i_line21_1 ? "line21-1 data in GOP"
+//X                                      : "no line21-1 data",
+//X                     video.i_line21_2 ? "line21-2 data in GOP"
+//X                                      : "no line21-2 data" );
+
+//X    intf_WarnMsg( 5, "dvd info: source is %s, %sletterboxed, %s mode",
+//X                     psz_source_res[video.i_source_res],
+//X                     video.i_letterboxed ? "" : "not ",
+//X                     video.i_mode ? "film (625/50 only)" : "camera" );
 }
 #undef video
 
@@ -156,48 +123,32 @@ void IfoPrintVideo( thread_dvd_data_t * p_dvd )
     p_dvd->p_ifo->vts.title_unit.p_title[p_dvd->i_title_id-1].title.pi_audio_status[i-1]
 void IfoPrintAudio( thread_dvd_data_t * p_dvd, int i )
 {
-
     if( audio_status.i_available )
     {
-        char    ppsz_mode[7][9] =
-                { "ac3", "unknown", "mpeg-1", "mpeg-2", "lpcm", "sdds", "dts" };
-        char    ppsz_appl_mode[3][15] =
-                { "not specified", "karaoke", "surround sound" };
-        char    psz_caption[25];
-        char    ppsz_quant[4][10] =
-                { "16 bits", "20 bits", "24 bits", "drc" };
+//X        char* ppsz_mode[8] =
+//X            { "AC3", "unknown", "MPEG", "MPEG-2", "LPCM", "SDDS", "DTS", "" };
+//X        char* ppsz_appl_mode[4] =
+//X            { "no application specified", "karaoke", "surround sound", "" };
+//X        char* ppsz_quant[4] =
+//X            { "16 bits", "20 bits", "24 bits", "drc" };
     
-        intf_WarnMsg( 5, "dvd info: audio %d" , i );
-        intf_WarnMsg( 5, "    language: %s", 
-                         DecodeLanguage( hton16( audio.i_lang_code ) ) );
-        intf_WarnMsg( 5, "    mode: %s", ppsz_mode[audio.i_coding_mode & 0x7] );
-        intf_WarnMsg( 5, "    channel(s): %d %s",
-                         audio.i_num_channels + 1,
-                         audio.i_multichannel_extension ? "ext." : "" );
-        intf_WarnMsg( 5, "    sampling: %d Hz",
-                         audio.i_sample_freq ? 96000 : 48000 );
-        intf_WarnMsg( 5, "    appl_mode: %s",
-                         ppsz_appl_mode[audio.i_appl_mode & 0x2] );
-        switch( audio.i_caption )
-        {
-        case 1:
-            sprintf( psz_caption, "normal caption" );
-            break;
-        case 3:
-            sprintf( psz_caption, "directors comments" );
-            break;
-        default:
-            sprintf( psz_caption, " " );
-            break;
-        }
-        intf_WarnMsg( 5, "    caption: %s", psz_caption );
-        intf_WarnMsg( 5, "    quantization: %s",
-                         ppsz_quant[audio.i_quantization & 0x3] );
-    
-        intf_WarnMsg( 5, "    status: %x", audio_status.i_position );
+//X        intf_WarnMsg( 5, "dvd info: audio %d (%s) is %s, "
+//X                         "%d%s channel%s, %dHz, %s", i,
+//X                         DecodeLanguage( audio.i_lang_code ),
+//X                         ppsz_mode[audio.i_coding_mode & 0x7],
+//X                         audio.i_num_channels + 1,
+//X                         audio.i_multichannel_extension ? " ext." : "",
+//X                         audio.i_num_channels ? "s" : "",
+//X                         audio.i_sample_freq ? 96000 : 48000,
+//X                         ppsz_appl_mode[audio.i_appl_mode & 0x3] );
+
+//X        intf_WarnMsg( 5, "dvd info: %s, quantization %s, status %x",
+//X                         (audio.i_caption == 1) ? "normal caption"
+//X                           : (audio.i_caption == 3) ? "directors comments"
+//X                               : "unknown caption",
+//X                         ppsz_quant[audio.i_quantization & 0x3],
+//X                         audio_status.i_position );
     }
-
-
 }
 #undef audio_status
 #undef audio
@@ -213,19 +164,15 @@ void IfoPrintSpu( thread_dvd_data_t * p_dvd, int i )
 {
     if( spu_status.i_available )
     {
-        intf_WarnMsg( 5, "dvd info: spu %d", i );
-        intf_WarnMsg( 5, "    caption: %d", spu.i_caption );
-        intf_WarnMsg( 5, "    language: %s",
-                         DecodeLanguage( hton16( spu.i_lang_code ) ) );
-        intf_WarnMsg( 5, "    prefix: %x", spu.i_prefix );
-
-        intf_WarnMsg( 5, "    status: 4:3 %x wide %x letter %x pan %x",
-            spu_status.i_position_43,
-            spu_status.i_position_wide,
-            spu_status.i_position_letter,
-            spu_status.i_position_pan );
+//X        intf_WarnMsg( 5, "dvd info: spu %d (%s), caption %d "
+//X                         "prefix %x, modes [%s%s%s%s ]", i,
+//X                         DecodeLanguage( spu.i_lang_code ),
+//X                         spu.i_caption, spu.i_prefix,
+//X                         spu_status.i_position_43 ? " 4:3" : "",
+//X                         spu_status.i_position_wide ? " wide" : "",
+//X                         spu_status.i_position_letter ? " letter" : "",
+//X                         spu_status.i_position_pan ? " pan" : "" );
     }
-
 }
 #undef spu_status
 #undef spu