diff options
author | dynaflash <[email protected]> | 2011-05-19 19:27:57 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2011-05-19 19:27:57 +0000 |
commit | 43e8ef8651cc4d1b9529885dace646c4a9566e14 (patch) | |
tree | 8f24b3c70c591aa7d0c2d25ac46a6c919e0ced73 /macosx/Controller.m | |
parent | 203d04750f93eb9d2b08cc5cb5b8ad2d28fad1ba (diff) |
MacGui: Remove unused variables to suppress warnings at compile time
- As per https://reviews.handbrake.fr/r/87/
- Patch by blindjimmy ... thanks!
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3984 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.m')
-rw-r--r-- | macosx/Controller.m | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m index 0265f06f6..ec5c15470 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -3013,7 +3013,6 @@ fWorkingCount = 0; hb_title_t * title = (hb_title_t *) hb_list_item( list, [fSrcTitlePopUp indexOfSelectedItem] ); hb_job_t * job = title->job; - hb_audio_config_t * audio; /* set job->angle for libdvdnav */ job->angle = [fSrcAnglePopUp indexOfSelectedItem] + 1; /* Chapter selection */ @@ -4588,7 +4587,6 @@ the user is using "Custom" settings by determining the sender*/ - (IBAction) videoEncoderPopUpChanged: (id) sender { - hb_job_t * job = fTitle->job; int videoEncoder = [[fVidEncoderPopUp selectedItem] tag]; [fAdvancedOptions setHidden:YES]; @@ -4807,7 +4805,6 @@ the user is using "Custom" settings by determining the sender*/ hb_title_t * title = (hb_title_t *) hb_list_item( list, [fSrcTitlePopUp indexOfSelectedItem] ); hb_job_t * job = title->job; - hb_audio_config_t * audio; /* For hb_calc_bitrate in addition to the Target Size in MB out of the * Target Size Field, we also need the job info for the Muxer, the Chapters * as well as all of the audio track info. |