C# Class Sdcb.FFmpegAPIWrapper.Common.FFmpegBitConverter

Mostrar archivo Open project: sdcb/Sdcb.FFmpegAPIWrapper

Public Methods

Method Description
ToFourCC ( int ffmpegVersion ) : string

fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').

ToFourCC ( uint ffmpegVersion ) : string

fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').

Method Details

ToFourCC() public static method

fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
public static ToFourCC ( int ffmpegVersion ) : string
ffmpegVersion int
return string

ToFourCC() public static method

fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
public static ToFourCC ( uint ffmpegVersion ) : string
ffmpegVersion uint
return string