00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @interface AVFileValidator : NSObject
00010 {
00011 struct AVFileValidatorPrivate *_priv;
00012 }
00013
00014 - (id)initWithPath:(id)fp8;
00015 - (void)dealloc;
00016 - (id)path;
00017 - (void)setPath:(id)fp8;
00018 - (id)byteStream;
00019 - (void)refMovieResolved:(id)fp8;
00020 - (void)refMovieLeaf:(id)fp8;
00021 - (void)streamOpened:(id)fp8;
00022 - (void)streamFailed:(id)fp8;
00023 - (void)validate;
00024 - (void)cancel;
00025 - (BOOL)isCompleted;
00026 - (float)progress;
00027
00028 @end
00029