Ignore:
Timestamp:
Oct 27, 2008 5:19:35 PM (5 years ago)
Author:
smorlat <smorlat@…>
Branch:
default
Message:

Fix little bogs.

git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@121 3f6dc0c8-ddfe-455d-9043-3cd528dc4637

File:
1 edited

Legend:

Unmodified
Added
Removed
  • linphone/mediastreamer2/src/nowebcam.c

    r55 r118  
    168168} 
    169169 
     170int static_image_get_vsize(MSFilter *f, void* data){ 
     171        SIData *d=(SIData*)f->data; 
     172        *(MSVideoSize*)data=d->vsize; 
     173        return 0; 
     174} 
     175 
    170176int static_image_get_pix_fmt(MSFilter *f, void *data){ 
    171177        *(MSPixFmt*)data=MS_YUV420P; 
     
    175181MSFilterMethod static_image_methods[]={ 
    176182        {       MS_FILTER_SET_VIDEO_SIZE, static_image_set_vsize }, 
     183        {       MS_FILTER_GET_VIDEO_SIZE, static_image_get_vsize }, 
    177184        {       MS_FILTER_GET_PIX_FMT, static_image_get_pix_fmt }, 
    178185        {       0,0 } 
Note: See TracChangeset for help on using the changeset viewer.