Changeset 182f9a350d8d162047b7ec587a1c1658efc81cfb

Show
Ignore:
Timestamp:
29/03/08 10:10:35 (6 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1206781835 +0200
git-parent:

[e19cbb78b62ce459e1ea8f683c4db1942ec16998]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1206781835 +0200
Message:

Remove SPU type

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • include/vlc_objects.h

    r9a867d7 r182f9a3  
    6060#define VLC_OBJECT_FILTER      (-22) 
    6161 
    62 #define VLC_OBJECT_SPU         (-24) 
     62 
    6363 
    6464#define VLC_OBJECT_SD          (-26) 
  • modules/misc/lua/objects.c

    r9a867d7 r182f9a3  
    129129          { VLC_OBJECT_OPENGL, "opengl" }, 
    130130          { VLC_OBJECT_FILTER, "filter" }, 
    131           { VLC_OBJECT_SPU, "spu" }, 
    132131          { VLC_OBJECT_SD, "sd" }, 
    133132          { VLC_OBJECT_XML, "xml" }, 
  • src/misc/objects.c

    re19cbb7 r182f9a3  
    302302            i_size = sizeof(vout_thread_t); 
    303303            psz_type = "video output"; 
    304             break; 
    305         case VLC_OBJECT_SPU: 
    306             i_size = sizeof(spu_t); 
    307             psz_type = "subpicture"; 
    308304            break; 
    309305        case VLC_OBJECT_AOUT: 
  • src/video_output/vout_subpictures.c

    r8594365 r182f9a3  
    7777{ 
    7878    int i_index; 
    79     spu_t *p_spu = vlc_object_create( p_this, VLC_OBJECT_SPU ); 
     79    spu_t *p_spu = vlc_custom_create( p_this, sizeof( spu_t ), 
     80                                      VLC_OBJECT_GENERIC, "subpicture" ); 
    8081 
    8182    for( i_index = 0; i_index < VOUT_MAX_SUBPICTURES; i_index++)