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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * dv.c: Digital video/Firewire input (file: access plug-in)
  3.  *****************************************************************************
  4.  * Copyright (C) 2005 M2X
  5.  * $Id: 665f83335ce3f919de4471b9a019131a5e6bf000 $
  6.  *
  7.  * Authors: Jean-Paul Saman <jpsaman at m2x dot nl>
  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.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_access.h>
  32. #include <errno.h>
  33. #ifdef HAVE_SYS_TYPES_H
  34. #   include <sys/types.h>
  35. #endif
  36. #ifdef HAVE_SYS_TIME_H
  37. #   include <sys/time.h>
  38. #endif
  39. #ifdef HAVE_SYS_STAT_H
  40. #   include <sys/stat.h>
  41. #endif
  42. #ifdef HAVE_FCNTL_H
  43. #   include <fcntl.h>
  44. #endif
  45. #ifdef HAVE_UNISTD_H
  46. #   include <unistd.h>
  47. #elif defined( WIN32 ) && !defined( UNDER_CE )
  48. #   include <io.h>
  49. #endif
  50. #include <sys/poll.h>
  51. #include <libraw1394/raw1394.h>
  52. #include <libraw1394/csr.h>
  53. #include <libavc1394/avc1394.h>
  54. #include <libavc1394/avc1394_vcr.h>
  55. #include <libavc1394/rom1394.h>
  56. /*****************************************************************************
  57.  * Module descriptor
  58.  *****************************************************************************/
  59. static int  Open ( vlc_object_t * );
  60. static void Close( vlc_object_t * );
  61. static block_t *Block( access_t * );
  62. static int Control( access_t *, int, va_list );
  63. #define CACHING_TEXT N_("Caching value in ms")
  64. #define CACHING_LONGTEXT N_( 
  65.     "Caching value for DV streams. This " 
  66.     "value should be set in milliseconds." )
  67. vlc_module_begin ()
  68.     set_description( N_("Digital Video (Firewire/ieee1394)  input") )
  69.     set_shortname( N_("DV") )
  70.     set_category( CAT_INPUT )
  71.     set_subcategory( SUBCAT_INPUT_ACCESS )
  72.     add_integer( "dv-caching", 60000 / 1000, NULL, CACHING_TEXT, CACHING_LONGTEXT, true )
  73.         change_safe()
  74.     set_capability( "access", 0 )
  75.     add_shortcut( "dv" )
  76.     add_shortcut( "dv1394" )
  77.     add_shortcut( "raw1394" )
  78.     set_callbacks( Open, Close )
  79. vlc_module_end ()
  80. typedef struct
  81. {
  82.     VLC_COMMON_MEMBERS
  83.     access_t        *p_access;
  84.     vlc_mutex_t     lock;
  85.     block_t         *p_frame;
  86.     block_t         **pp_last;
  87. } event_thread_t;
  88. static void* Raw1394EventThread( vlc_object_t * );
  89. static enum raw1394_iso_disposition
  90. Raw1394Handler(raw1394handle_t, unsigned char *,
  91.         unsigned int, unsigned char,
  92.         unsigned char, unsigned char, unsigned int,
  93.         unsigned int);
  94. static int Raw1394GetNumPorts( access_t *p_access );
  95. static raw1394handle_t Raw1394Open( access_t *, int );
  96. static void Raw1394Close( raw1394handle_t );
  97. static int DiscoverAVC( access_t *, int *, uint64_t );
  98. static raw1394handle_t AVCOpen( access_t *, int );
  99. static void AVCClose( access_t * );
  100. static int AVCResetHandler( raw1394handle_t, unsigned int );
  101. static int AVCPlay( access_t *, int );
  102. static int AVCPause( access_t *, int );
  103. static int AVCStop( access_t *, int );
  104. struct access_sys_t
  105. {
  106.     raw1394handle_t p_avc1394;
  107.     raw1394handle_t p_raw1394;
  108.     struct pollfd   raw1394_poll;
  109.     int i_cards;
  110.     int i_node;
  111.     int i_port;
  112.     int i_channel;
  113.     uint64_t i_guid;
  114.     /* event */
  115.     event_thread_t *p_ev;
  116.     vlc_mutex_t lock;
  117.     block_t *p_frame;
  118. };
  119. #define ISOCHRONOUS_QUEUE_LENGTH 1000
  120. #define ISOCHRONOUS_MAX_PACKET_SIZE 4096
  121. /*****************************************************************************
  122.  * Open: open the file
  123.  *****************************************************************************/
  124. static int Open( vlc_object_t *p_this )
  125. {
  126.     access_t     *p_access = (access_t*)p_this;
  127.     access_sys_t *p_sys;
  128.     char *psz_name = strdup( p_access->psz_path );
  129.     struct raw1394_portinfo port_inf[ 16 ];
  130.     msg_Dbg( p_access, "opening device %s", psz_name );
  131.     /* Set up p_access */
  132.     access_InitFields( p_access );
  133.     ACCESS_SET_CALLBACKS( NULL, Block, Control, NULL );
  134.     p_access->p_sys = p_sys = malloc( sizeof( access_sys_t ) );
  135.     if( !p_sys )
  136.     {
  137.         free( psz_name );
  138.         return VLC_EGENERIC;
  139.     }
  140.     p_sys->i_cards = 0;
  141.     p_sys->i_node = 0;
  142.     p_sys->i_port = 0;
  143.     p_sys->i_guid = 0;
  144.     p_sys->i_channel = 63;
  145.     p_sys->p_raw1394 = NULL;
  146.     p_sys->p_avc1394 = NULL;
  147.     p_sys->p_frame = NULL;
  148.     p_sys->p_ev = NULL;
  149.     vlc_mutex_init( &p_sys->lock );
  150.     p_sys->i_node = DiscoverAVC( p_access, &p_sys->i_port, p_sys->i_guid );
  151.     if( p_sys->i_node < 0 )
  152.     {
  153.         msg_Err( p_access, "failed to open a Firewire (IEEE1394) connection" );
  154.         Close( p_this );
  155.         free( psz_name );
  156.         return VLC_EGENERIC;
  157.     }
  158.     p_sys->p_avc1394 = AVCOpen( p_access, p_sys->i_port );
  159.     if( !p_sys->p_avc1394 )
  160.     {
  161.         msg_Err( p_access, "no Digital Video Control device found on %s", psz_name );
  162.         Close( p_this );
  163.         free( psz_name );
  164.         return VLC_EGENERIC;
  165.     }
  166.     p_sys->p_raw1394 = raw1394_new_handle();
  167.     if( !p_sys->p_raw1394 )
  168.     {
  169.         msg_Err( p_access, "no Digital Video device found on %s", psz_name );
  170.         Close( p_this );
  171.         free( psz_name );
  172.         return VLC_EGENERIC;
  173.     }
  174.     p_sys->i_cards = raw1394_get_port_info( p_sys->p_raw1394, port_inf, 16 );
  175.     if( p_sys->i_cards < 0 )
  176.     {
  177.         msg_Err( p_access, "failed to get port info for %s", psz_name );
  178.         Close( p_this );
  179.         free( psz_name );
  180.         return VLC_EGENERIC;
  181.     }
  182.     if( raw1394_set_port( p_sys->p_raw1394, p_sys->i_port ) < 0 )
  183.     {
  184.         msg_Err( p_access, "failed to set port info for %s", psz_name );
  185.         Close( p_this );
  186.         free( psz_name );
  187.         return VLC_EGENERIC;
  188.     }
  189.     if ( raw1394_iso_recv_init( p_sys->p_raw1394, Raw1394Handler,
  190.                 ISOCHRONOUS_QUEUE_LENGTH, ISOCHRONOUS_MAX_PACKET_SIZE,
  191.                 p_sys->i_channel, RAW1394_DMA_PACKET_PER_BUFFER, -1 ) < 0 )
  192.     {
  193.         msg_Err( p_access, "failed to init isochronous recv for %s", psz_name );
  194.         Close( p_this );
  195.         free( psz_name );
  196.         return VLC_EGENERIC;
  197.     }
  198.     raw1394_set_userdata( p_sys->p_raw1394, p_access );
  199.     raw1394_iso_recv_start( p_sys->p_raw1394, -1, -1, 0 );
  200.     p_sys->raw1394_poll.fd = raw1394_get_fd( p_sys->p_raw1394 );
  201.     p_sys->raw1394_poll.events = POLLIN | POLLPRI;
  202.     /* Update default_pts to a suitable value for udp access */
  203.     var_Create( p_access, "dv-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  204.     /* Now create our event thread catcher */
  205.     p_sys->p_ev = vlc_object_create( p_access, sizeof( event_thread_t ) );
  206.     if( !p_sys->p_ev )
  207.     {
  208.         msg_Err( p_access, "failed to create event thread for %s", psz_name );
  209.         Close( p_this );
  210.         free( psz_name );
  211.         return VLC_EGENERIC;
  212.     }
  213.  
  214.     p_sys->p_ev->p_frame = NULL;
  215.     p_sys->p_ev->pp_last = &p_sys->p_ev->p_frame;
  216.     p_sys->p_ev->p_access = p_access;
  217.     vlc_mutex_init( &p_sys->p_ev->lock );
  218.     vlc_thread_create( p_sys->p_ev, "dv event thread handler",
  219.                        Raw1394EventThread, VLC_THREAD_PRIORITY_OUTPUT );
  220.     free( psz_name );
  221.     return VLC_SUCCESS;
  222. }
  223. /*****************************************************************************
  224.  * Close: free unused data structures
  225.  *****************************************************************************/
  226. static void Close( vlc_object_t *p_this )
  227. {
  228.     access_t     *p_access = (access_t*)p_this;
  229.     access_sys_t *p_sys = p_access->p_sys;
  230.     if( p_sys->p_ev )
  231.     {
  232.         /* stop the event handler */
  233.         vlc_object_kill( p_sys->p_ev );
  234.         if( p_sys->p_raw1394 )
  235.             raw1394_iso_shutdown( p_sys->p_raw1394 );
  236.         vlc_thread_join( p_sys->p_ev );
  237.         vlc_mutex_destroy( &p_sys->p_ev->lock );
  238.         /* Cleanup frame data */
  239.         if( p_sys->p_ev->p_frame )
  240.         {
  241.             block_ChainRelease( p_sys->p_ev->p_frame );
  242.             p_sys->p_ev->p_frame = NULL;
  243.             p_sys->p_ev->pp_last = &p_sys->p_frame;
  244.         }
  245.         vlc_object_release( p_sys->p_ev );
  246.     }
  247.     if( p_sys->p_frame )
  248.         block_ChainRelease( p_sys->p_frame );
  249.     if( p_sys->p_raw1394 )
  250.         raw1394_destroy_handle( p_sys->p_raw1394 );
  251.     AVCClose( p_access );
  252.     vlc_mutex_destroy( &p_sys->lock );
  253.     free( p_sys );
  254. }
  255. /*****************************************************************************
  256.  * Control:
  257.  *****************************************************************************/
  258. static int Control( access_t *p_access, int i_query, va_list args )
  259. {
  260.     access_sys_t *p_sys = p_access->p_sys;
  261.     bool   *pb_bool;
  262.     int64_t      *pi_64;
  263.     switch( i_query )
  264.     {
  265.         /* */
  266.         case ACCESS_CAN_PAUSE:
  267.             pb_bool = (bool*)va_arg( args, bool* );
  268.             *pb_bool = true;
  269.             break;
  270.        case ACCESS_CAN_SEEK:
  271.        case ACCESS_CAN_FASTSEEK:
  272.        case ACCESS_CAN_CONTROL_PACE:
  273.             pb_bool = (bool*)va_arg( args, bool* );
  274.             *pb_bool = false;
  275.             break;
  276.         case ACCESS_GET_PTS_DELAY:
  277.             pi_64 = (int64_t*)va_arg( args, int64_t * );
  278.             *pi_64 = var_GetInteger( p_access, "dv-caching" ) * 1000;
  279.             break;
  280.         /* */
  281.         case ACCESS_SET_PAUSE_STATE:
  282.             AVCPause( p_access, p_sys->i_node );
  283.             break;
  284.         case ACCESS_GET_TITLE_INFO:
  285.         case ACCESS_SET_TITLE:
  286.         case ACCESS_SET_SEEKPOINT:
  287.         case ACCESS_SET_PRIVATE_ID_STATE:
  288.         case ACCESS_GET_CONTENT_TYPE:
  289.             return VLC_EGENERIC;
  290.         default:
  291.             msg_Warn( p_access, "unimplemented query in control" );
  292.             return VLC_EGENERIC;
  293.     }
  294.     return VLC_SUCCESS;
  295. }
  296. static block_t *Block( access_t *p_access )
  297. {
  298.     access_sys_t *p_sys = p_access->p_sys;
  299.     block_t *p_block = NULL;
  300. #if 0
  301.     if( !p_access->psz_demux )
  302.     {
  303.         free( p_access->psz_demux );
  304.         p_access->psz_demux = strdup( "rawdv" );
  305.     }
  306. #endif
  307.     vlc_mutex_lock( &p_sys->lock );
  308.     p_block = p_sys->p_frame;
  309.     //msg_Dbg( p_access, "sending frame %p",p_block );
  310.     p_sys->p_frame = NULL;
  311.     vlc_mutex_unlock( &p_sys->lock );
  312.     return p_block;
  313. }
  314. static void* Raw1394EventThread( vlc_object_t *p_this )
  315. {
  316.     event_thread_t *p_ev = (event_thread_t *) p_this;
  317.     access_t *p_access = (access_t *) p_ev->p_access;
  318.     access_sys_t *p_sys = (access_sys_t *) p_access->p_sys;
  319.     int result = 0;
  320.     int canc = vlc_savecancel ();
  321.     AVCPlay( p_access, p_sys->i_node );
  322.     while( vlc_object_alive (p_sys->p_ev) )
  323.     {
  324.         while( ( result = poll( &(p_sys->raw1394_poll), 1, 200 ) ) < 0 )
  325.         {
  326.             if( !( errno == EAGAIN || errno == EINTR ) )
  327.             {
  328.                 perror( "error: raw1394 poll" );
  329.                 msg_Err( p_access, "retrying device raw1394" );
  330.             }
  331.         }
  332.         if( !vlc_object_alive (p_sys->p_ev) )
  333.                 break;
  334.         if( result > 0 && ( ( p_sys->raw1394_poll.revents & POLLIN )
  335.                 || ( p_sys->raw1394_poll.revents & POLLPRI ) ) )
  336.             result = raw1394_loop_iterate( p_sys->p_raw1394 );
  337.     }
  338.     AVCStop( p_access, p_sys->i_node );
  339.     vlc_restorecancel (canc);
  340.     return NULL;
  341. }
  342. static enum raw1394_iso_disposition
  343. Raw1394Handler(raw1394handle_t handle, unsigned char *data,
  344.         unsigned int length, unsigned char channel,
  345.         unsigned char tag, unsigned char sy, unsigned int cycle,
  346.         unsigned int dropped)
  347. {
  348.     access_t *p_access = NULL;
  349.     access_sys_t *p_sys = NULL;
  350.     block_t *p_block = NULL;
  351.     VLC_UNUSED(channel); VLC_UNUSED(tag);
  352.     VLC_UNUSED(sy); VLC_UNUSED(cycle); VLC_UNUSED(dropped);
  353.     p_access = (access_t *) raw1394_get_userdata( handle );
  354.     if( !p_access ) return 0;
  355.     p_sys = p_access->p_sys;
  356.     /* skip empty packets */
  357.     if ( length > 16 )
  358.     {
  359.         unsigned char * p = data + 8;
  360.         int section_type = p[ 0 ] >> 5;           /* section type is in bits 5 - 7 */
  361.         int dif_sequence = p[ 1 ] >> 4;           /* dif sequence number is in bits 4 - 7 */
  362.         int dif_block = p[ 2 ];
  363.         vlc_mutex_lock( &p_sys->p_ev->lock );
  364.         /* if we are at the beginning of a frame, we put the previous
  365.            frame in our output_queue. */
  366.         if( (section_type == 0) && (dif_sequence == 0) )
  367.         {
  368.             vlc_mutex_lock( &p_sys->lock );
  369.             if( p_sys->p_ev->p_frame )
  370.             {
  371.                 /* Push current frame to p_access thread. */
  372.                 //p_sys->p_ev->p_frame->i_pts = mdate();
  373.                 block_ChainAppend( &p_sys->p_frame, p_sys->p_ev->p_frame );
  374.             }
  375.             /* reset list */
  376.             p_sys->p_ev->p_frame = block_New( p_access, 144000 );
  377.             p_sys->p_ev->pp_last = &p_sys->p_frame;
  378.             vlc_mutex_unlock( &p_sys->lock );
  379.         }
  380.         p_block = p_sys->p_ev->p_frame;
  381.         if( p_block )
  382.         {
  383.             switch ( section_type )
  384.             {
  385.             case 0:    /* 1 Header block */
  386.                 /* p[3] |= 0x80; // hack to force PAL data */
  387.                 memcpy( p_block->p_buffer + dif_sequence * 150 * 80, p, 480 );
  388.                 break;
  389.             case 1:    /* 2 Subcode blocks */
  390.                 memcpy( p_block->p_buffer + dif_sequence * 150 * 80 + ( 1 + dif_block ) * 80, p, 480 );
  391.                 break;
  392.             case 2:    /* 3 VAUX blocks */
  393.                 memcpy( p_block->p_buffer + dif_sequence * 150 * 80 + ( 3 + dif_block ) * 80, p, 480 );
  394.                 break;
  395.             case 3:    /* 9 Audio blocks interleaved with video */
  396.                 memcpy( p_block->p_buffer + dif_sequence * 150 * 80 + ( 6 + dif_block * 16 ) * 80, p, 480 );
  397.                 break;
  398.             case 4:    /* 135 Video blocks interleaved with audio */
  399.                 memcpy( p_block->p_buffer + dif_sequence * 150 * 80 + ( 7 + ( dif_block / 15 ) + dif_block ) * 80, p, 480 );
  400.                 break;
  401.             default:    /* we can´t handle any other data */
  402.                 block_Release( p_block );
  403.                 p_block = NULL;
  404.                 break;
  405.             }
  406.         }
  407.         vlc_mutex_unlock( &p_sys->p_ev->lock );
  408.     }
  409.     return 0;
  410. }
  411. /*
  412.  * Routing borrowed from dvgrab-1.8
  413.  * Copyright by Arne Schirmacher <dvgrab@schirmacher.de>
  414.  * Dan Dennedy <dan@dennedy.org> and others
  415.  */
  416. static int Raw1394GetNumPorts( access_t *p_access )
  417. {
  418.     int n_ports;
  419.     struct raw1394_portinfo pinf[ 16 ];
  420.     raw1394handle_t handle;
  421.     /* get a raw1394 handle */
  422.     if ( !( handle = raw1394_new_handle() ) )
  423.     {
  424.         msg_Err( p_access, "raw1394 - failed to get handle: %m." );
  425.         return VLC_EGENERIC;
  426.     }
  427.     if ( ( n_ports = raw1394_get_port_info( handle, pinf, 16 ) ) < 0 )
  428.     {
  429.         msg_Err( p_access, "raw1394 - failed to get port info: %m." );
  430.         raw1394_destroy_handle( handle );
  431.         return VLC_EGENERIC;
  432.     }
  433.     raw1394_destroy_handle( handle );
  434.     return n_ports;
  435. }
  436. static raw1394handle_t Raw1394Open( access_t *p_access, int port )
  437. {
  438.     int n_ports;
  439.     struct raw1394_portinfo pinf[ 16 ];
  440.     raw1394handle_t handle;
  441.     /* get a raw1394 handle */
  442. #ifdef RAW1394_V_0_8
  443.     handle = raw1394_get_handle();
  444. #else
  445.     handle = raw1394_new_handle();
  446. #endif
  447.     if ( !handle )
  448.     {
  449.         msg_Err( p_access, "raw1394 - failed to get handle: %m." );
  450.         return NULL;
  451.     }
  452.     if ( ( n_ports = raw1394_get_port_info( handle, pinf, 16 ) ) < 0 )
  453.     {
  454.         msg_Err( p_access, "raw1394 - failed to get port info: %m." );
  455.         raw1394_destroy_handle( handle );
  456.         return NULL;
  457.     }
  458.     /* tell raw1394 which host adapter to use */
  459.     if ( raw1394_set_port( handle, port ) < 0 )
  460.     {
  461.         msg_Err( p_access, "raw1394 - failed to set set port: %m." );
  462.         return NULL;
  463.     }
  464.     return handle;
  465. }
  466. static void Raw1394Close( raw1394handle_t handle )
  467. {
  468.     raw1394_destroy_handle( handle );
  469. }
  470. static int DiscoverAVC( access_t *p_access, int* port, uint64_t guid )
  471. {
  472.     rom1394_directory rom_dir;
  473.     raw1394handle_t handle = NULL;
  474.     int device = -1;
  475.     int i, j = 0;
  476.     int m = Raw1394GetNumPorts( p_access );
  477.     if( *port >= 0 )
  478.     {
  479.         /* search on explicit port */
  480.         j = *port;
  481.         m = *port + 1;
  482.     }
  483.     for( ; j < m && device == -1; j++ )
  484.     {
  485.         handle = Raw1394Open( p_access, j );
  486.         if( !handle )
  487.             return -1;
  488.         for( i = 0; i < raw1394_get_nodecount( handle ); ++i )
  489.         {
  490.             if( guid != 0 )
  491.             {
  492.                 /* select explicitly by GUID */
  493.                 if( guid == rom1394_get_guid( handle, i ) )
  494.                 {
  495.                     device = i;
  496.                     *port = j;
  497.                     break;
  498.                 }
  499.             }
  500.             else
  501.             {
  502.                 /* select first AV/C Tape Reccorder Player node */
  503.                 if( rom1394_get_directory( handle, i, &rom_dir ) < 0 )
  504.                 {
  505.                     msg_Err( p_access, "error reading config rom directory for node %d", i );
  506.                     continue;
  507.                 }
  508.                 if( ( rom1394_get_node_type( &rom_dir ) == ROM1394_NODE_TYPE_AVC ) &&
  509.                         avc1394_check_subunit_type( handle, i, AVC1394_SUBUNIT_TYPE_VCR ) )
  510.                 {
  511.                     device = i;
  512.                     *port = j;
  513.                     break;
  514.                 }
  515.             }
  516.         }
  517.         Raw1394Close( handle );
  518.     }
  519.     return device;
  520. }
  521. /*
  522.  * Handle AVC commands
  523.  */
  524. static raw1394handle_t AVCOpen( access_t *p_access, int port )
  525. {
  526.     access_sys_t *p_sys = p_access->p_sys;
  527.     int numcards;
  528.     struct raw1394_portinfo pinf[ 16 ];
  529.     p_sys->p_avc1394 = raw1394_new_handle();
  530.     if( !p_sys->p_avc1394 )
  531.         return NULL;
  532.     numcards = raw1394_get_port_info( p_sys->p_avc1394, pinf, 16 );
  533.     if( numcards < -1 )
  534.         return NULL;
  535.     if( raw1394_set_port( p_sys->p_avc1394, port ) < 0 )
  536.         return NULL;
  537.     raw1394_set_bus_reset_handler( p_sys->p_avc1394, AVCResetHandler );
  538.     return  p_sys->p_avc1394;
  539. }
  540. static void AVCClose( access_t *p_access )
  541. {
  542.     access_sys_t *p_sys = p_access->p_sys;
  543.     if( p_sys->p_avc1394 )
  544.     {
  545.         raw1394_destroy_handle( p_sys->p_avc1394 );
  546.         p_sys->p_avc1394 = NULL;
  547.     }
  548. }
  549. static int AVCResetHandler( raw1394handle_t handle, unsigned int generation )
  550. {
  551.     raw1394_update_generation( handle, generation );
  552.     return 0;
  553. }
  554. static int AVCPlay( access_t *p_access, int phyID )
  555. {
  556.     access_sys_t *p_sys = p_access->p_sys;
  557.     msg_Dbg( p_access, "send play command over Digital Video control channel" );
  558.     if( !p_sys->p_avc1394 )
  559.         return 0;
  560.     if( phyID >= 0 )
  561.     {
  562.         if( !avc1394_vcr_is_recording( p_sys->p_avc1394, phyID ) &&
  563.             avc1394_vcr_is_playing( p_sys->p_avc1394, phyID ) != AVC1394_VCR_OPERAND_PLAY_FORWARD )
  564.                 avc1394_vcr_play( p_sys->p_avc1394, phyID );
  565.     }
  566.     return 0;
  567. }
  568. static int AVCPause( access_t *p_access, int phyID )
  569. {
  570.     access_sys_t *p_sys = p_access->p_sys;
  571.     if( !p_sys->p_avc1394 )
  572.         return 0;
  573.     if( phyID >= 0 )
  574.     {
  575.         if( !avc1394_vcr_is_recording( p_sys->p_avc1394, phyID ) &&
  576.             ( avc1394_vcr_is_playing( p_sys->p_avc1394, phyID ) != AVC1394_VCR_OPERAND_PLAY_FORWARD_PAUSE ) )
  577.                 avc1394_vcr_pause( p_sys->p_avc1394, phyID );
  578.     }
  579.     return 0;
  580. }
  581. static int AVCStop( access_t *p_access, int phyID )
  582. {
  583.     access_sys_t *p_sys = p_access->p_sys;
  584.     msg_Dbg( p_access, "closing Digital Video control channel" );
  585.     if( !p_sys->p_avc1394 )
  586.         return 0;
  587.     if ( phyID >= 0 )
  588.         avc1394_vcr_stop( p_sys->p_avc1394, phyID );
  589.     return 0;
  590. }