search for: outputframe

Displaying 2 results from an estimated 2 matches for "outputframe".

Did you mean: output_frame
2007 Nov 20
0
speex_bits_write / speex_bits_read_from - getting Static
...r(i = 0; i<numSamples; i++) inputptr[i] = (short) inputFrame[i]; //end lazy man's conversion speex_bits_reset(m_bits); //preprocess the input //speex_preprocess(m_preprocess, inputptr); //encode speex_encode_int(m_encoderState, inputptr, m_bits); char outputFrame[SPEEX_MAX_ENCODE_SIZE_PER_FRAME]; free(inputptr); unsigned int numBytes = speex_bits_write(m_bits, outputFrame, SPEEX_MAX_ENCODE_SIZE_PER_FRAME); //begin lazy man's conversion to Managed C++ array<Byte>^ output = gcnew array<Byte>(numBytes); for(i = 0; i< nu...
2008 Nov 03
1
possible tcltk event loop problem
...n(...) tkxview(.log, ...)) logYscroll <- ttkscrollbar(logFrame, command=function(...) tkyview(.log, ...)) tkconfigure(.log, xscrollcommand=function(...) tkset(logXscroll, ...)) tkconfigure(.log, yscrollcommand=function(...) tkset(logYscroll, ...)) For the output window: outputFrame <- tkframe(.commander) putRcmdr("outputWindow", tktext(outputFrame, bg="white", foreground=getRcmdr("output.text.color"), font=getRcmdr("logFont"), height=output.height, width=log.width, wrap="none", undo=TRUE)) .output <- Out...