view src/impl/hoofbaby/app/main.d @ 3:e6cf9f26d0e7

Added a separate "transcode" app for testing transcoding
author fraserofthenight
date Wed, 08 Jul 2009 07:29:48 -0700
parents 3425707ddbf6
children 270343d824ae
line wrap: on
line source

/**
 * Hoofbaby -- http://www.dsource.org/projects/hoofbaby
 * Copyright (C) 2009 Robert Fraser
 * 
 * This program is free software; you can redistribute it andor
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

module hoofbaby.app.main;

// Imports for whole program (just link to them)
import tango.stdc.stdarg; // Must be linked in to prevent strange linker errors
debug import tango.core.stacktrace.TraceExceptions;
import NONE = hoofbaby.codec.libav.mingw;

import hoofbaby.app.libs;

public int main(char[][] args)
{
	initLibs();
	return Platinum.mimeOnFire(`D:\Media\Videos`);
}