Changeset 496aa990d8f37d30311f63893c9928b34ce4b443

Show
Ignore:
Timestamp:
24/08/06 08:39:20 (2 years ago)
Author:
Benjamin Pracht <bigben@videolan.org>
git-committer:
Benjamin Pracht <bigben@videolan.org> 1156401560 +0000
git-parent:

[b876d12e0e0cd09278ba26a25094644c07130a24]

git-author:
Benjamin Pracht <bigben@videolan.org> 1156401560 +0000
Message:

* Some more debug

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/access/v4l2.c

    red8404b r496aa99  
    196196             ( p_sys->dev_cap.capabilities & V4L2_CAP_AUDIO  ? 'X':' '), 
    197197             ( p_sys->dev_cap.capabilities & V4L2_CAP_TUNER  ? 'X':' ') ); 
    198      
     198 
     199    msg_Dbg( p_demux, "Supported I/O methods are: (%c) Read/Write, " 
     200                                                 "(%c) Streaming, " 
     201                                                 "(%c) Asynchronous", 
     202            ( p_sys->dev_cap.capabilities & V4L2_CAP_READWRITE ? 'X':' ' ), 
     203            ( p_sys->dev_cap.capabilities & V4L2_CAP_STREAMING ? 'X':' ' ), 
     204            ( p_sys->dev_cap.capabilities & V4L2_CAP_ASYNCIO ? 'X':' ' ) ); 
    199205 
    200206    /* Now, enumerate all the video inputs. This is useless at the moment