summaryrefslogtreecommitdiffstats
path: root/HandBrake.cpp
blob: 91a2628b4c799beb60524a821acd17ef6def483c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* $Id: HandBrake.cpp,v 1.1.1.1 2003/06/24 13:43:48 titer Exp $ */

#include "HBApp.h"

#include <ffmpeg/avcodec.h>

int main()
{
    /* libavcodec initializations */
    avcodec_init();
    register_avcodec( &mpeg4_encoder );

    /* Run the BApplication */
    HBApp * app = new HBApp();
    app->Run();
    delete app;
    return 0;
}