ref: be9a1da2035540631d01cc40ac8243a84ae078ce
dir: /codec/build/windowsphone/all/CodecApp/MainPage.xaml.cs/
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Navigation; using Microsoft.Phone.Controls; using Microsoft.Phone.Shell; using CodecApp.Resources; using CodecRTComponent; namespace CodecApp { public partial class MainPage : PhoneApplicationPage { // Constructor private CodecRunTimeComponent vRTCCodec; // Constructor public MainPage() { InitializeComponent(); vRTCCodec = new CodecRunTimeComponent(); // Sample code to localize the ApplicationBar //BuildLocalizedApplicationBar(); } private void Button_Click_CallEncoder (object sender, RoutedEventArgs e) { int iRetVal = 0; float fFPS = 0.0F; double dEncoderTime = 0.0; int iEncodedFrame = 0; string sEncoderInfo = "Encoder performance: \n"; iRetVal = vRTCCodec.Encode(); if (0 == iRetVal) { fFPS = vRTCCodec.GetEncFPS(); dEncoderTime = vRTCCodec.GetEncTime(); iEncodedFrame = vRTCCodec.GetEncodedFrameNum(); sEncoderInfo += "FPS : " + fFPS.ToString() + "\n"; sEncoderInfo += "EncTime(sec): " + dEncoderTime.ToString() + "\n"; sEncoderInfo += "EncodedNum : " + iEncodedFrame.ToString() + "\n"; EncoderInfo.Text = sEncoderInfo; } else { EncoderInfo.Text = "ebcoded failed!..."; } } private void Button_Click__CallDecoder (object sender, RoutedEventArgs e) { int iRetVal = 0; float fFPS = 0.0F; double dDecoderTime = 0.0; int iDecodedFrame = 0; string sDecoderInfo = "Decoder performance: \n"; iRetVal = vRTCCodec.Decode(); if (0 == iRetVal) { fFPS = vRTCCodec.GetDecFPS(); dDecoderTime = vRTCCodec.GetDecTime(); iDecodedFrame = vRTCCodec.GetDecodedFrameNum(); sDecoderInfo += "FPS : " + fFPS.ToString() + "\n"; sDecoderInfo += "DecTime(sec): " + dDecoderTime.ToString() + "\n"; sDecoderInfo += "DecodedNum : " + iDecodedFrame.ToString() + "\n"; DecoderInfo.Text = sDecoderInfo; } else { DecoderInfo.Text = "decoded failed!..."; } } // Sample code for building a localized ApplicationBar //private void BuildLocalizedApplicationBar() //{ // // Set the page's ApplicationBar to a new instance of ApplicationBar. // ApplicationBar = new ApplicationBar(); // // Create a new button and set the text value to the localized string from AppResources. // ApplicationBarIconButton appBarButton = new ApplicationBarIconButton(new Uri("/Assets/AppBar/appbar.add.rest.png", UriKind.Relative)); // appBarButton.Text = AppResources.AppBarButtonText; // ApplicationBar.Buttons.Add(appBarButton); // // Create a new menu item with the localized string from AppResources. // ApplicationBarMenuItem appBarMenuItem = new ApplicationBarMenuItem(AppResources.AppBarMenuItemText); // ApplicationBar.MenuItems.Add(appBarMenuItem); //} } }