VisioForge Video Edit SDK (Delphi / ActiveX)
ContentsIndexHome
PreviousUpNext
TVFFilePlayError Enumeration

File playback error

Pascal
TVFFilePlayError = (
  VF_FP_OK,
  VF_FP_AUDIO_ERROR,
  VF_FP_VIDEO_ERROR,
  VF_FP_OTHER_STREAM_ERROR,
  VF_FP_OUT_OF_MEMORY,
  VF_FP_CANNOT_CONNECT_FILTERS,
  VF_FP_CANNOT_LOAD_SOURCE_FILTER,
  VF_FP_CANNOT_RENDER,
  VF_FP_INVALID_FILE_FORMAT,
  VF_FP_UNKNOWN_FILE_TYPE,
  VF_FP_UNSUPPORTED_STREAM,
  VF_FP_UNKNOWN_ERROR,
  VF_FP_FAIL
);
C++
enum TVFFilePlayError {
  VF_FP_OK,
  VF_FP_AUDIO_ERROR,
  VF_FP_VIDEO_ERROR,
  VF_FP_OTHER_STREAM_ERROR,
  VF_FP_OUT_OF_MEMORY,
  VF_FP_CANNOT_CONNECT_FILTERS,
  VF_FP_CANNOT_LOAD_SOURCE_FILTER,
  VF_FP_CANNOT_RENDER,
  VF_FP_INVALID_FILE_FORMAT,
  VF_FP_UNKNOWN_FILE_TYPE,
  VF_FP_UNSUPPORTED_STREAM,
  VF_FP_UNKNOWN_ERROR,
  VF_FP_FAIL
};
C#
public enum TVFFilePlayError {
  VF_FP_OK,
  VF_FP_AUDIO_ERROR,
  VF_FP_VIDEO_ERROR,
  VF_FP_OTHER_STREAM_ERROR,
  VF_FP_OUT_OF_MEMORY,
  VF_FP_CANNOT_CONNECT_FILTERS,
  VF_FP_CANNOT_LOAD_SOURCE_FILTER,
  VF_FP_CANNOT_RENDER,
  VF_FP_INVALID_FILE_FORMAT,
  VF_FP_UNKNOWN_FILE_TYPE,
  VF_FP_UNSUPPORTED_STREAM,
  VF_FP_UNKNOWN_ERROR,
  VF_FP_FAIL
}
Visual Basic
Public Enum TVFFilePlayError
  VF_FP_OK
  VF_FP_AUDIO_ERROR
  VF_FP_VIDEO_ERROR
  VF_FP_OTHER_STREAM_ERROR
  VF_FP_OUT_OF_MEMORY
  VF_FP_CANNOT_CONNECT_FILTERS
  VF_FP_CANNOT_LOAD_SOURCE_FILTER
  VF_FP_CANNOT_RENDER
  VF_FP_INVALID_FILE_FORMAT
  VF_FP_UNKNOWN_FILE_TYPE
  VF_FP_UNSUPPORTED_STREAM
  VF_FP_UNKNOWN_ERROR
  VF_FP_FAIL
End Enum
Java
public class TVFFilePlayError;
IDL
enum TVFFilePlayError {
  VF_FP_OK,
  VF_FP_AUDIO_ERROR,
  VF_FP_VIDEO_ERROR,
  VF_FP_OTHER_STREAM_ERROR,
  VF_FP_OUT_OF_MEMORY,
  VF_FP_CANNOT_CONNECT_FILTERS,
  VF_FP_CANNOT_LOAD_SOURCE_FILTER,
  VF_FP_CANNOT_RENDER,
  VF_FP_INVALID_FILE_FORMAT,
  VF_FP_UNKNOWN_FILE_TYPE,
  VF_FP_UNSUPPORTED_STREAM,
  VF_FP_UNKNOWN_ERROR,
  VF_FP_FAIL
};
JavaScript
TVFFilePlayError
PHP
public class TVFFilePlayError;

VideoEditTypes

Members 
Description 
VF_FP_OK 
No errors.  
VF_FP_AUDIO_ERROR 
Cannot play back the audio stream.  
VF_FP_VIDEO_ERROR 
Cannot play back the video stream.  
VF_FP_OTHER_STREAM_ERROR 
Cannot play back the one of streams.  
VF_FP_OUT_OF_MEMORY 
Insufficient memory.  
VF_FP_CANNOT_CONNECT_FILTERS 
No combination of intermediate filters could be found to make the connection.  
VF_FP_CANNOT_LOAD_SOURCE_FILTER 
The source filter for this file could not be loaded.  
VF_FP_CANNOT_RENDER 
No combination of filters could be found to render the stream.  
VF_FP_INVALID_FILE_FORMAT 
The file format is invalid.  
VF_FP_UNKNOWN_FILE_TYPE 
The media type of this file is not recognized.  
VF_FP_UNSUPPORTED_STREAM 
Cannot play back the file: the format is not supported.  
VF_FP_UNKNOWN_ERROR 
Unknown error.  
VF_FP_FAIL 
Unknown error.  
Made with Doc-O-Matic.
Copyright (c) 2011. All rights reserved.
What do you think about this topic? Send feedback!