Changeset 5d33b82e889d2d8c3d9f040eaa0d6a6e51d270b0

Show
Ignore:
Timestamp:
04/10/07 19:29:22 (1 year ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1191518962 +0000
git-parent:

[eaffd94b63b2452a6e89d8f355217e44b2da0cb5]

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

Make sdp_Start static since it is used nowhere outside

Files:

Legend:

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

    r979f5cc r5d33b82  
    220220 
    221221VLC_EXPORT( char *, vlc_sdp_Start, ( vlc_object_t *obj, const char *cfgpref, const struct sockaddr *src, size_t srclen, const struct sockaddr *addr, size_t addrlen ) ); 
    222 VLC_EXPORT( char *, sdp_Start, (const char *name, const char *description, const char *url, const char *email, const char *phone, const struct sockaddr *orig, size_t origlen, const struct sockaddr *addr, size_t addrlen) ); 
    223222VLC_EXPORT( char *, sdp_AddMedia, (char **sdp, const char *type, const char *protocol, int dport, unsigned pt, vlc_bool_t bw_indep, unsigned bw, const char *rtpmap, const char *fmtp) ); 
    224223VLC_EXPORT( char *, sdp_AddAttribute, (char **sdp, const char *name, const char *fmt, ...) ATTRIBUTE_FORMAT( 3, 4 ) ); 
  • src/stream_output/sdp.c

    rcf1414d r5d33b82  
    8787 
    8888 
     89static 
    8990char *sdp_Start (const char *name, const char *description, const char *url, 
    9091                 const char *email, const char *phone,