All pastes #2537968 Raw Edit

Something

public unlisted c v1 · immutable
#2537968 ·published 2014-01-14 12:47 UTC
rendered paste body
#include <stdio.h>#include <libavformat/avformat.h>int main(int argc, char **argv){    AVFormatContext *fmt_ctx;    char *source_file = "/Users/gheorghitacristian/Documents/audio/Dusky.mp4";        av_register_all();        if(avformat_open_input(&fmt_ctx, source_file, NULL, NULL) < 0)    {        fprintf(stderr, "Could not open file: %s\n", source_file);        exit(0);    }    else    {        printf("Fille opened succesfuly!\n");    }        return 0;}