Click here to Skip to main content
15,894,896 members
Articles / Web Development / HTML

nVLC

Rate me:
Please Sign up or sign in to vote.
4.94/5 (213 votes)
12 Feb 2018GPL316 min read 12.2M   69.9K   379  
A .NET API for the libVLC interface so the vast majority of VLC functionality could be utilized in managed applications
//    nVLC
//    
//    Author:  Roman Ginzburg
//
//    nVLC is free software: you can redistribute it and/or modify
//    it under the terms of the GNU General Public License as published by
//    the Free Software Foundation, either version 3 of the License, or
//    (at your option) any later version.
//
//    nVLC 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.
//     
// ========================================================================

using LibVlcWrapper;
using System;
using System.Text;

namespace Implementation.Utils
{
    internal class MiscUtils
    {
        public static string DwordToFourCC(uint fourCC)
        {
            char[] chars = new char[4];
            chars[0] = (char)(fourCC & 0xFF);
            chars[1] = (char)((fourCC >> 8) & 0xFF);
            chars[2] = (char)((fourCC >> 16) & 0xFF);
            chars[3] = (char)((fourCC >> 24) & 0xFF);
            return new string(chars);
        }

        public static string GetMinimalSupportedVersion(EntryPointNotFoundException ex)
        {
            MinimalLibVlcVersion minVersion = (MinimalLibVlcVersion)Attribute.GetCustomAttribute(ex.TargetSite, typeof(MinimalLibVlcVersion));
            if (minVersion != null)
            {
                return minVersion.MinimalVersion;
            }

            return string.Empty;
        }

        public static T FindNestedException<T>(Exception source) where T : Exception
        {
            if (source.GetType() == typeof(T))
            {
                return (T)source;
            }

            while (source.InnerException != null)
            {
                return FindNestedException<T>(source.InnerException);
            }

            return default(T);
        }

        public static string LogNestedException(Exception ex)
        {
            StringBuilder sb = new StringBuilder();
            Exception error = ex;
            do
            {
                sb.AppendLine(error.Message);
                error = error.InnerException;
            }
            while (error.InnerException != null);
            return sb.ToString();
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior)
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions