From: Ravindra Kumar Mishra Date: Mon, 25 Mar 2013 11:48:58 +0000 (+0530) Subject: Fix for N_SE-30104 X-Git-Tag: 2.1b_release~45 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b451f23b22de3be3373ece75d7b28d257b452d1a;p=samples%2Fnative%2FMediaApp.git Fix for N_SE-30104 Signed-off-by: Ravindra Kumar Mishra --- diff --git a/project/src/Codec/AudioDecoderForm.cpp b/project/src/Codec/AudioDecoderForm.cpp index 40267b9..69d77fc 100644 --- a/project/src/Codec/AudioDecoderForm.cpp +++ b/project/src/Codec/AudioDecoderForm.cpp @@ -317,7 +317,6 @@ AudioDecoderForm::GetPathFromConfig(void) void AudioDecoderForm::SetDefault(void) { - __configFileCount = 0; __codeccount = 0; GetPathFromConfig(); @@ -554,6 +553,12 @@ AudioDecoderForm::OnActionPerformed(const Tizen::Ui::Control& source, int action __pEditFileInformations->SetText(__filename); __pEditFileInformations->Draw(); } + + if(__pPcmPitchCtrl != null) + { + __pPcmPitchCtrl->Clear(); + } + AppLog("Completed the Next Action"); } break; @@ -604,6 +609,11 @@ AudioDecoderForm::OnActionPerformed(const Tizen::Ui::Control& source, int action __pEditFileInformations->SetText(__filename); __pEditFileInformations->Draw(); } + + if(__pPcmPitchCtrl != null) + { + __pPcmPitchCtrl->Clear(); + } } break; diff --git a/project/src/Codec/AudioEncoderForm.cpp b/project/src/Codec/AudioEncoderForm.cpp index 60aab75..51958aa 100644 --- a/project/src/Codec/AudioEncoderForm.cpp +++ b/project/src/Codec/AudioEncoderForm.cpp @@ -590,6 +590,11 @@ AudioEncoderForm::OnActionPerformed(const Tizen::Ui::Control& source, int action __pEditFileInformations->SetText(__filename); __pEditFileInformations->Draw(); } + + if(__pPcmPitchCtrl != null) + { + __pPcmPitchCtrl->Clear(); + } } break;