Changeset 5cb9c9d9b54f9481e14019618a35046a54d176d4

Show
Ignore:
Timestamp:
15/11/06 15:14:55 (2 years ago)
Author:
Olivier Aubert <olivier.aubert@liris.cnrs.fr>
git-committer:
Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1163600095 +0000
git-parent:

[c2d31f450ee2f282e36d18f12fe19c4f3352e050]

git-author:
Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1163600095 +0000
Message:

python/bindings/vlc_object.c: complete vlc_object_find parameters

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • bindings/python/vlc_object.c

    r53af664 r5cb9c9d  
    128128        i_object_type = VLC_OBJECT_PLAYLIST; 
    129129    } 
    130     else if (! strncmp( psz_name, "root", 4 ) ) 
    131     { 
    132         i_object_type = VLC_OBJECT_ROOT; 
    133     } 
    134130    else if (! strncmp( psz_name, "libvlc", 6 ) ) 
    135131    { 
     
    139135    { 
    140136        i_object_type = VLC_OBJECT_VOUT; 
     137    } 
     138    else if (! strncmp( psz_name, "sout", 4 ) ) 
     139    { 
     140        i_object_type = VLC_OBJECT_SOUT; 
     141    } 
     142    else if (! strncmp( psz_name, "global", 6 ) ) 
     143    { 
     144        i_object_type = VLC_OBJECT_GLOBAL; 
     145    } 
     146    else if (! strncmp( psz_name, "packetizer", 10 ) ) 
     147    { 
     148        i_object_type = VLC_OBJECT_PACKETIZER; 
     149    } 
     150    else if (! strncmp( psz_name, "encoder", 7 ) ) 
     151    { 
     152        i_object_type = VLC_OBJECT_ENCODER; 
     153    } 
     154    else if (! strncmp( psz_name, "vlm", 3 ) ) 
     155    { 
     156        i_object_type = VLC_OBJECT_VLM; 
     157    } 
     158    else if (! strncmp( psz_name, "announce", 8 ) ) 
     159    { 
     160        i_object_type = VLC_OBJECT_ANNOUNCE; 
     161    } 
     162    else if (! strncmp( psz_name, "demux", 5 ) ) 
     163    { 
     164        i_object_type = VLC_OBJECT_DEMUX; 
     165    } 
     166    else if (! strncmp( psz_name, "access", 6 ) ) 
     167    { 
     168        i_object_type = VLC_OBJECT_ACCESS; 
     169    } 
     170    else if (! strncmp( psz_name, "stream", 6 ) ) 
     171    { 
     172        i_object_type = VLC_OBJECT_STREAM; 
     173    } 
     174    else if (! strncmp( psz_name, "filter", 6 ) ) 
     175    { 
     176        i_object_type = VLC_OBJECT_FILTER; 
     177    } 
     178    else if (! strncmp( psz_name, "vod", 3 ) ) 
     179    { 
     180        i_object_type = VLC_OBJECT_VOD; 
     181    } 
     182    else if (! strncmp( psz_name, "xml", 3 ) ) 
     183    { 
     184        i_object_type = VLC_OBJECT_XML; 
     185    } 
     186    else if (! strncmp( psz_name, "osdmenu", 7 ) ) 
     187    { 
     188        i_object_type = VLC_OBJECT_OSDMENU; 
     189    } 
     190    else if (! strncmp( psz_name, "stats", 5 ) ) 
     191    { 
     192        i_object_type = VLC_OBJECT_STATS; 
     193    } 
     194    else if (! strncmp( psz_name, "metaengine", 10 ) ) 
     195    { 
     196        i_object_type = VLC_OBJECT_META_ENGINE; 
    141197    } 
    142198    else