gvp.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:7k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * gvp.c: Google Video Playlist demuxer
  3.  *****************************************************************************
  4.  * Copyright (C) 2006 the VideoLAN team
  5.  * $Id: e06b3114ebe59e66259ae2661289eef20a5ad9b0 $
  6.  *
  7.  * Authors: Antoine Cellerier <dionoea @t videolan d.t org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /**
  24.  * Format seems to be:
  25.  * gvp_version:<version> (1.1)
  26.  * url:<the media's url>
  27.  * docid:<integer>
  28.  * duration:<integer ms ?>
  29.  * title:<the title>
  30.  * description:<desc line1>^M
  31.  * description:<desc linei>^M
  32.  * description:<desc final line (no ^M)>
  33.  * lines starting with # are comments
  34.  *
  35.  * Example:
  36. # download the free Google Video Player from http://video.google.com/
  37. gvp_version:1.1
  38. url:http://vp.video.google.com/videodownload?version=0&secureurl=uAAAAMVHt_Q99OwfGxlWVWH7jd6AA_3n4TboaxIELD_kCg3KcBPSxExZFvQv5DGAxrahVg57KZNZvd0EORPBM3xrxTJ3FdLEWBYiduklpviqjE1Q5zLAkiEZaUsUSFtmbBZDTUUBuN9moYY59eK8lpWXsgTbYB1tLVtaxNBpAMRMyVeHoiJ7BzYdENk-PqJeBbr50QbQ83WK87yJAbN2pSRnF-ucCuNMSLBV7wBL4IcxFpYb1WOK-YXkyxY0NtWlPBufTA&sigh=matNCEVSOR8c-3zN9Gtx0zGinwU&begin=0&len=59749&docid=-715862862672743260
  39. docid:-715862862672743260
  40. duration:59749
  41. title:Apple Macintosh 1984 Superbowl Commercial
  42. description:The now infamous Apple Macintosh commercial aired during the 1984 SuperBowl.
  43.  */
  44. /*****************************************************************************
  45.  * Preamble
  46.  *****************************************************************************/
  47. #ifdef HAVE_CONFIG_H
  48. # include "config.h"
  49. #endif
  50. #include <vlc_common.h>
  51. #include <vlc_demux.h>
  52. #include "playlist.h"
  53. #define MAX_LINE 1024
  54. struct demux_sys_t
  55. {
  56.     input_item_t *p_current_input;
  57. };
  58. /*****************************************************************************
  59.  * Local prototypes
  60.  *****************************************************************************/
  61. static int Demux( demux_t *p_demux);
  62. static int Control( demux_t *p_demux, int i_query, va_list args );
  63. /*****************************************************************************
  64.  * Import_GVP: main import function
  65.  *****************************************************************************/
  66. int Import_GVP( vlc_object_t *p_this )
  67. {
  68.     demux_t *p_demux = (demux_t *)p_this;
  69.     int i_peek, i, b_found = false;
  70.     const uint8_t *p_peek;
  71.     i_peek = stream_Peek( p_demux->s, &p_peek, MAX_LINE );
  72.     for( i = 0; i < i_peek - (int)sizeof("gvp_version:"); i++ )
  73.     {
  74.         if( p_peek[i] == 'g' && p_peek[i+1] == 'v' && p_peek[i+2] == 'p' &&
  75.             !memcmp( p_peek+i, "gvp_version:", sizeof("gvp_version:") - 1 ) )
  76.         {
  77.             b_found = true;
  78.             break;
  79.         }
  80.     }
  81.     if( !b_found ) return VLC_EGENERIC;
  82.     STANDARD_DEMUX_INIT_MSG(  "using Google Video Playlist (gvp) import" );
  83.     p_demux->pf_control = Control;
  84.     p_demux->pf_demux = Demux;
  85.     p_demux->p_sys = malloc( sizeof( demux_sys_t ) );
  86.     if( !p_demux->p_sys )
  87.         return VLC_ENOMEM;
  88.     return VLC_SUCCESS;
  89. }
  90. /*****************************************************************************
  91.  * Deactivate: frees unused data
  92.  *****************************************************************************/
  93. void Close_GVP( vlc_object_t *p_this )
  94. {
  95.     demux_t *p_demux = (demux_t *)p_this;
  96.     demux_sys_t *p_sys = p_demux->p_sys;
  97.     free( p_sys );
  98. }
  99. static int Demux( demux_t *p_demux )
  100. {
  101.     demux_sys_t *p_sys = p_demux->p_sys;
  102.     char *psz_line;
  103.     char *psz_attrvalue;
  104.     char *psz_version = NULL;
  105.     char *psz_url = NULL;
  106.     char *psz_docid = NULL;
  107.     int i_duration = -1;
  108.     char *psz_title = NULL;
  109.     char *psz_description = NULL;
  110.     input_item_t *p_input;
  111.     INIT_PLAYLIST_STUFF;
  112.     p_sys->p_current_input = p_current_input;
  113.     while( ( psz_line = stream_ReadLine( p_demux->s ) ) )
  114.     {
  115.         if( *psz_line == '#' )
  116.         {
  117.             /* This is a comment */
  118.             free( psz_line );
  119.             continue;
  120.         }
  121.         psz_attrvalue = strchr( psz_line, ':' );
  122.         if( !psz_attrvalue )
  123.         {
  124.             msg_Dbg( p_demux, "Unable to parse line (%s)", psz_line );
  125.             free( psz_line );
  126.             continue;
  127.         }
  128.         *psz_attrvalue = '';
  129.         psz_attrvalue++;
  130.         if( !strcmp( psz_line, "gvp_version" ) )
  131.         {
  132.             psz_version = strdup( psz_attrvalue );
  133.         }
  134.         else if( !strcmp( psz_line, "url" ) )
  135.         {
  136.             psz_url = strdup( psz_attrvalue );
  137.         }
  138.         else if( !strcmp( psz_line, "docid" ) )
  139.         {
  140.             psz_docid = strdup( psz_attrvalue );
  141.         }
  142.         else if( !strcmp( psz_line, "duration" ) )
  143.         {
  144.             i_duration = atoi( psz_attrvalue );
  145.         }
  146.         else if( !strcmp( psz_line, "title" ) )
  147.         {
  148.             psz_title = strdup( psz_attrvalue );
  149.         }
  150.         else if( !strcmp( psz_line, "description" ) )
  151.         {
  152.             char *buf;
  153.             if( !psz_description )
  154.             {
  155.                 psz_description = strdup( psz_attrvalue );
  156.             }
  157.             else
  158.             {
  159.                 /* handle multi-line descriptions */
  160.                 if( asprintf( &buf, "%sn%s", psz_description, psz_attrvalue ) == -1 )
  161.                     buf = NULL;
  162.                 free( psz_description );
  163.                 psz_description = buf;
  164.             }
  165.             /* remove ^M char at the end of the line (if any) */
  166.             buf = psz_description + strlen( psz_description );
  167.             if( buf != psz_description )
  168.             {
  169.                 buf--;
  170.                 if( *buf == 'r' ) *buf = '';
  171.             }
  172.         }
  173.         free( psz_line );
  174.     }
  175.     if( !psz_url )
  176.     {
  177.         msg_Err( p_demux, "URL not found" );
  178.     }
  179.     else
  180.     {
  181.         p_input = input_item_New( p_demux, psz_url, psz_title );
  182. #define SADD_INFO( type, field ) if( field ) { input_item_AddInfo( 
  183.                     p_input, _("Google Video"), type, "%s", field ) ; }
  184.         SADD_INFO( "gvp_version", psz_version );
  185.         SADD_INFO( "docid", psz_docid );
  186.         SADD_INFO( "description", psz_description );
  187.         input_item_AddSubItem( p_current_input, p_input );
  188.         vlc_gc_decref( p_input );
  189.     }
  190.     HANDLE_PLAY_AND_RELEASE;
  191.     free( psz_version );
  192.     free( psz_url );
  193.     free( psz_docid );
  194.     free( psz_title );
  195.     free( psz_description );
  196.     return 0; /* Needed for correct operation of go back */
  197. }
  198. static int Control( demux_t *p_demux, int i_query, va_list args )
  199. {
  200.     VLC_UNUSED(p_demux); VLC_UNUSED(i_query); VLC_UNUSED(args);
  201.     return VLC_EGENERIC;
  202. }