Skip to content

Commit

Permalink
Move private methods to .m file
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzoua committed May 1, 2016
1 parent b189cfd commit f2e212e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 0 additions & 6 deletions MP4File.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,6 @@
@property (assign) BOOL gaplessPlay;

-(id) initWithFileName: (NSString*)fileName;
-(id) findAtom: (NSString*)atomName;
-(NSData*) encodeMetaDataAtom: (NSString*)name value:(NSData*)value type:(UInt32)type;
-(BOOL) updateFile;
-(NSData*) encodeHDLRAtom;
-(void) reserveSpace:(UInt64)size at:(UInt64)offset;
-(void) fixSTCOAtomBy:(UInt64)shift;
-(void) fixupAtom: (MP4Atom*)atom;

@end
8 changes: 8 additions & 0 deletions MP4File.m
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,14 @@
@interface MP4File() {
NSFileHandle *_fh;
}

-(id) findAtom: (NSString*)atomName;
-(NSData*) encodeMetaDataAtom: (NSString*)name value:(NSData*)value type:(UInt32)type;
-(NSData*) encodeHDLRAtom;
-(void) reserveSpace:(UInt64)size at:(UInt64)offset;
-(void) fixSTCOAtomBy:(UInt64)shift;
-(void) fixupAtom: (MP4Atom*)atom;

@end

@implementation MP4File
Expand Down

0 comments on commit f2e212e

Please sign in to comment.