Show
Ignore:
Timestamp:
02/24/10 00:46:12 (2 years ago)
Author:
Robin Gareus <rgareus@…>
Parents:
b05f1efa827beabba2d4dd6d7e9298cdb56c25ef
Children:
2f7b6650795d38c763f324a167de2027135b725b, fd4d779342a16f50de84c3747aaede85d3953f77
git-committer:
Robin Gareus <rgareus@priroda.local> / 2010-02-24T01:46:12Z+0100
Message:

OggZCap: allow re-size; improved build env.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • oggzcap/src/videoout/encoder_example.c

    r6e49c34 r53f2ac9  
    270270shout_t     *myShout; 
    271271//FILE          *outTestFile ; 
    272 int myOggfwd_init( const char* outIceIp, int outIcePort, const char* outIceMount, 
     272int myOggfwd_init( const char* outIceIp, int outIcePort, const char* outPassword, const char* outIceMount, 
    273273                   const char *description, const char *genre, const char *name, const char *url ) { 
    274274         
     
    280280        if (shout_set_host(myShout, outIceIp) != SHOUTERR_SUCCESS) printf("oggfwd - Error - set host pb...%s\n",shout_get_error(myShout)) ; 
    281281        if (shout_set_port(myShout, port) != SHOUTERR_SUCCESS) printf("oggfwd - Error - look at the code to know...\n") ; 
    282         if (shout_set_password(myShout, "inoutsource") != SHOUTERR_SUCCESS) printf("oggfwd - Error - look at the code to know...\n") ; 
     282        if (shout_set_password(myShout, outPassword) != SHOUTERR_SUCCESS) printf("oggfwd - Error - look at the code to know...\n") ; 
    283283        if (shout_set_mount(myShout, outIceMount) != SHOUTERR_SUCCESS) printf("oggfwd - Error - look at the code to know...\n") ; 
    284284        shout_set_format(myShout, SHOUT_FORMAT_VORBIS);