Example #1
0
 /// <summary>
 /// Last function to be called when finished encoding a stream.
 /// Should unlike beDeinitStream() also be called if the encoding is canceled.
 /// </summary>
 /// <param name="hbeStream">Handle of the stream.</param>
 /// <returns>On success: BE_ERR_SUCCESSFUL</returns>
 public static uint beCloseStream(uint hbeStream)
 {
     return(CPU.Is32Bit
         ? Lame86.beCloseStream(hbeStream)
         : Lame64.beCloseStream(hbeStream));
 }