search for: input_

Displaying 11 results from an estimated 11 matches for "input_".

Did you mean: inputs
2006 Feb 23
25
reloading fragments of pages
Hello, I have a treeview, that works with scriptaculous in order to load the nodes dynamically. I also have in the main part of the page, a table with the list of elements. The lists of elements can be drag-dropped on the treeview in order to move them around (they are also draggable on other parts of the page) I need though, to refresh the treeview to reflect changes when a folder was moved
2007 Mar 02
0
12 commits - libswfdec/Makefile.am libswfdec/swfdec_audio_flv.c libswfdec/swfdec_flv_decoder.c libswfdec/swfdec_js.c libswfdec/swfdec_js.h libswfdec/swfdec_js_video.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h
...;next) { - swfdec_video_movie_new_image (walk->data, stream->surface); - } - } } static void diff --git a/libswfdec/swfdec_video.c b/libswfdec/swfdec_video.c index e67be19..bf6b460 100644 --- a/libswfdec/swfdec_video.c +++ b/libswfdec/swfdec_video.c @@ -91,7 +91,7 @@ swfdec_video_input_iterate (SwfdecVideoM CAIRO_FORMAT_ARGB32, w, h, w * 4); cairo_surface_set_user_data (surface, &key, buffer, (cairo_destroy_func_t) swfdec_buffer_unref); - swfdec_video_movie_new_image (input->movie, surface); + swfdec_video_movie_new_image (input->movie, surface, w, h)...
2005 Jul 11
2
[BUG] --sector-align zero padding is not entirely zero
...ring the contents of the WAV files, the "shntool" fixed version correctly contained 448 zero bytes at the end (112 samples). However, the FLAC version contained 224 zero bytes, followed by 224 non-zero bytes. I've tracked the bug to the calculation of the number of bytes to fill the input_ buffer with, which is calculated in line 778 of encode.c as follows: data_bytes = wide_samples * (bps >> 3); However, my understanding is that the input_buffer is always an array of 32-bit integers, and therefore the calculation should always be: data_bytes = wide_samples * 4; The express...
2013 Jan 21
1
lmomco package - Random number generation using Wakeby distribution
Dear R forum >From the given data, I have estimated the parameters of Wakeby distribution using lmomco package as library(lmomco) (amounts <- read.csv("input_S.csv")$amount) # ___________________________________________________________ # Wakeby distribution - Parameter estimation N                      = length(amounts) lmr                    = lmom.ub(amounts) parameters_of_Wakeby   = parwak(lmr) > parameters_of_Wakeby $type [1] "wa...
2012 Jun 27
0
[LLVMdev] [llvm-commits] [PATCH] Refactoring the DFA generator
Committed in r159281. -Anshu On 6/26/2012 3:04 AM, Ivan Llopard wrote: > Hi Anshu, > > I don't have commit access. It applies correctly on trunk, I've just > checked it. Could you please commit it? > > Ivan > > On 26/06/2012 04:44, adasgupt at codeaurora.org wrote: >> Hi Ivan, >> >> Sorry, I should have been more explicit in my last email. The
2012 Jun 26
4
[LLVMdev] [llvm-commits] [PATCH] Refactoring the DFA generator
Hi Anshu, I don't have commit access. It applies correctly on trunk, I've just checked it. Could you please commit it? Ivan On 26/06/2012 04:44, adasgupt at codeaurora.org wrote: > Hi Ivan, > > Sorry, I should have been more explicit in my last email. The patch looks > good to me. Please check that it applies on trunk and go ahead and commit. > > Thanks > -Anshu
2012 Jun 28
3
[LLVMdev] [llvm-commits] [PATCH] Refactoring the DFA generator
...eNum++), isInitial(S.isInitial), stateInfo(S.stateInfo) {} +State::~State() { + for (std::map<unsigned, Transition *>::const_iterator + TI = inputToTrans.begin(), TE = inputToTrans.end(); TI != TE; ++TI) + delete TI->second; +} Transition::Transition(State *from_, unsigned input_, State *to_) : transitionNum(currentTransitionNum++), from(from_), input(input_), - to(to_) {} + to(to_) { + from->addTransition(input_, this); +} -DFA::DFA() : - LargestInput(0) {} +DFA::DFA(): currentState(NULL) {} +DFA::~DFA() { + for (std::set<State*, ltState>::const_iter...
2015 Apr 17
0
[ANNOUNCE] xkbprint 1.0.4
...printf calls with snprintf() Combine repeated sequences of fprintf() calls into single calls Replace calls to index() with calls to strchr() Combine IsoKeyCaps array of strings into a single string Move some local variables to the scope in which they live Remove unused INPUT_* definitions Fix some sign/size conversion warnings from clang Add -version option to print program version Remove old CVS id tags configure: Drop AM_MAINTAINER_MODE autogen.sh: Honor NOCONFIGURE=1 xkbprint 1.0.4 Gaetan Nadon (3): man: remove trailing spac...
2005 Jul 20
0
[BUG] --sector-align zero padding is not entirely zero
...;shntool" fixed > version > correctly contained 448 zero bytes at the end (112 samples). > However, > the FLAC version contained 224 zero bytes, followed by 224 non-zero > bytes. > > I've tracked the bug to the calculation of the number of bytes to > fill > the input_ buffer with, which is calculated in line 778 of encode.c > as > follows: > > data_bytes = wide_samples * (bps >> 3); > > However, my understanding is that the input_buffer is always an array > of > 32-bit integers, and therefore the calculation should always be: >...
2007 Oct 18
0
18 commits - doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_event.c libswfdec/swfdec_event.h libswfdec/swfdec_flash_security.c
...amp) if (stream->surface) { GList *walk; for (walk = stream->movies; walk; walk = walk->next) { - swfdec_video_movie_new_image (walk->data, stream->surface); + swfdec_video_movie_new_image (walk->data); } } } @@ -350,6 +350,14 @@ swfdec_net_stream_input_disconnect (SwfdecVideoMovieInput *input, SwfdecVideoMov g_object_unref (stream); } +static cairo_surface_t * +swfdec_net_stream_input_get_image (SwfdecVideoMovieInput *input) +{ + SwfdecNetStream *stream = SWFDEC_NET_STREAM ((guchar *) input - G_STRUCT_OFFSET (SwfdecNetStream, input)); + +...
2007 Apr 06
0
3 commits - libswfdec-gtk/swfdec_gtk_loader.c libswfdec/Makefile.am libswfdec/swfdec_codec.c libswfdec/swfdec_codec_ffmpeg.c libswfdec/swfdec_codec_gst.c libswfdec/swfdec_codec.h libswfdec/swfdec_codec_screen.c libswfdec/swfdec_codec_video.c
...imeout; /* timeout to advance to */ SwfdecVideoMovieInput input; /* used when attaching to a video movie */ diff --git a/libswfdec/swfdec_video.c b/libswfdec/swfdec_video.c index 70afa13..eb682b1 100644 --- a/libswfdec/swfdec_video.c +++ b/libswfdec/swfdec_video.c @@ -70,8 +70,6 @@ swfdec_video_input_iterate (SwfdecVideoM { SwfdecVideoInput *input = (SwfdecVideoInput *) input_; SwfdecBuffer *buffer; - static const cairo_user_data_key_t key; - guint w, h; cairo_surface_t *surface; input->current_frame = (input->current_frame + 1) % input->video->n_frames; @@ -81,17 +7...