recordAudioVC.h 927 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // recordAudioVC.h
  3. // shiku_im
  4. //
  5. // Created by flyeagleTang on 14-6-24.
  6. // Copyright (c) 2014年 Reese. All rights reserved.
  7. //
  8. #import "admobViewController.h"
  9. #import "JXAudioPlayer.h"
  10. @class MixerHostAudio;
  11. @class mediaOutput;
  12. @interface recordAudioVC : UIViewController{
  13. MixerHostAudio* _mixRecorder;
  14. mediaOutput* outputer;
  15. IBOutlet UISegmentedControl* mFxType;
  16. BOOL _startOutput;
  17. JXImageView* _input;
  18. JXImageView* _volume;
  19. JXImageView* _btnPlay;
  20. JXImageView* _btnRecord;
  21. JXImageView* _btnBack;
  22. JXImageView* _btnDel;
  23. JXImageView* _btnEnter;
  24. JXImageView* _iv;
  25. UIScrollView* _effectType;
  26. UILabel* _lb;
  27. NSTimer* _timer;
  28. JXAudioPlayer* _player;
  29. recordAudioVC* _pSelf;
  30. }
  31. @property(nonatomic,assign) int timeLen;
  32. @property(nonatomic,weak) id delegate;
  33. @property(assign) SEL didRecord;
  34. @property (nonatomic, strong) NSString* outputFileName;
  35. @end