root/test/Movie/setSoundStream/test04.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

#include <libming.h>
#include <stdlib.h>

int main() {
        SWFMovie m = newSWFMovieWithVersion(7);
        SWFSoundStream stream;
        int i;
        FILE *file;
        file = fopen(MEDIADIR "/mpeg1.mp3", "rb");
        if(!file) {
                perror(MEDIADIR "/mpeg1.mp3");
                return EXIT_FAILURE;
        }
                
        stream = newSWFSoundStream(file);
        if(!stream)
        {
                fprintf(stderr, "Could not create SWFSoundStream\n");
                return EXIT_FAILURE;
        }
        SWFMovie_setSoundStream(m, stream);
        for(i = 0; i < 12; i++)
                SWFMovie_nextFrame(m);

        SWFMovie_save(m, "test04.swf");
        return 0;
}

/* [<][>][^][v][top][bottom][index][help] */