Exemplo n.º 1
0
int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    qDebug() << avutil_license();
    
    return a.exec();
}
Exemplo n.º 2
0
static void get_plugin_information( void )
{
    sprintf( plugin_information,
             "L-SMASH Works File Reader r%s\n"
             "    libavutil %s: %s / libavcodec %s: %s\n"
             "    libavformat %s: %s / libswscale %s: %s\n"
             "    libavresample %s: %s",
             LSMASHWORKS_REV,
             AV_STRINGIFY( LIBAVUTIL_VERSION     ), avutil_license    (),
             AV_STRINGIFY( LIBAVCODEC_VERSION    ), avcodec_license   (),
             AV_STRINGIFY( LIBAVFORMAT_VERSION   ), avformat_license  (),
             AV_STRINGIFY( LIBSWSCALE_VERSION    ), swscale_license   (),
             AV_STRINGIFY( LIBAVRESAMPLE_VERSION ), avresample_license() );
}