search for: sws

Displaying 20 results from an estimated 36 matches for "sws".

Did you mean: ss
2007 Jun 26
0
2 commits - libswfdec/swfdec_codec_ffmpeg.c
...than Debian stable diff --git a/libswfdec/swfdec_codec_ffmpeg.c b/libswfdec/swfdec_codec_ffmpeg.c index 8f333e8..5dc8f3c 100644 --- a/libswfdec/swfdec_codec_ffmpeg.c +++ b/libswfdec/swfdec_codec_ffmpeg.c @@ -22,6 +22,7 @@ #endif #include <string.h> #include <avcodec.h> +#include <swscale.h> #include "swfdec_codec_audio.h" #include "swfdec_codec_video.h" @@ -124,7 +125,7 @@ swfdec_audio_decoder_ffmpeg_push (Swfdec outbuf = swfdec_buffer_new_and_alloc (AVCODEC_MAX_AUDIO_FRAME_SIZE); for (amount = 0; amount < buffer->length; amount += len) {...
2005 Apr 18
2
colClasses = "Date" in read.delim, how to pass date-format?
Hi I have a huge data-set with one column being of type date. Of course I can import the data using this column as "factor" and then convert it later to dates, using: sws.bezuege$FaktDat <- dates(as.character(sws.bezuege$FaktDat), format = c(dates = "d.m.y")) But the conversion requires a huge amount of memory (and time), therefore I would like to use colClasses = c("Date"). My question is: since I have format...
2007 Sep 05
0
5 commits - libswfdec/swfdec_codec_ffmpeg.c libswfdec/swfdec_codec_video.c libswfdec/swfdec_player.c libswfdec/swfdec_video.c
...libswfdec/swfdec_codec_ffmpeg.c index 9fae7cf..1ed3054 100644 --- a/libswfdec/swfdec_codec_ffmpeg.c +++ b/libswfdec/swfdec_codec_ffmpeg.c @@ -208,26 +208,47 @@ typedef struct { AVCodecContext * ctx; /* out context (d'oh) */ AVFrame * frame; /* the frame we use for decoding */ struct SwsContext * sws; /* the format conversion */ + int sws_width; /* width used in resampler */ + int sws_height; /* height used in resampler */ } SwfdecVideoDecoderFFMpeg; +#define ALIGNMENT 31 static SwfdecBuffer * swfdec_video_decoder_ffmpeg_decode (SwfdecVideoDecoder *dec, SwfdecBuffer *bu...
2012 Mar 07
2
[LLVMdev] Question about post RA scheduler
...m=$tmp0> SW %A3<kill>, %SP, 44; mem:ST4[FixedStack-1+4] SW %A2<kill>, %SP, 40; mem:ST4[FixedStack-1](align=8) %D0<def> = LDC1 %SP, 40; mem:LD8[%x2] The frame index operands of the first two stores and the fourth load have been lowered to real addresses. Since the first two SWs store to ($sp + 44) and ($sp + 40), and instruction LDC1 loads from ($sp + 40), there should be a dependency between these instructions. However, when ScheduleDAGInstrs::BuildSchedGraph(AliasAnalysis *AA) builds the schedule graph, there are no dependency edges added between the two SWs and LDC1...
2012 Mar 07
0
[LLVMdev] Question about post RA scheduler
...P, 44; mem:ST4[FixedStack-1+4] > SW %A2<kill>, %SP, 40; mem:ST4[FixedStack-1](align=8) > %D0<def> = LDC1 %SP, 40; mem:LD8[%x2] > > > The frame index operands of the first two stores and the fourth load > have been lowered to real addresses. > Since the first two SWs store to ($sp + 44) and ($sp + 40), and > instruction LDC1 loads from ($sp + 40), > there should be a dependency between these instructions. > > However, when ScheduleDAGInstrs::BuildSchedGraph(AliasAnalysis *AA) > builds the schedule graph, > there are no dependency edges added...
2012 Mar 07
2
[LLVMdev] Question about post RA scheduler
...gt;       SW %A2<kill>, %SP, 40; mem:ST4[FixedStack-1](align=8) >>       %D0<def> = LDC1 %SP, 40; mem:LD8[%x2] >> >> >> The frame index operands of the first two stores and the fourth load >> have been lowered to real addresses. >> Since the first two SWs store to ($sp + 44) and  ($sp + 40), and >> instruction LDC1 loads from ($sp + 40), >> there should be a dependency between these instructions. >> >> However, when ScheduleDAGInstrs::BuildSchedGraph(AliasAnalysis *AA) >> builds the schedule graph, >> there are no...
2012 Mar 13
0
[LLVMdev] Question about post RA scheduler
...t;, %SP, 40; mem:ST4[FixedStack-1](align=8) >>> %D0<def> = LDC1 %SP, 40; mem:LD8[%x2] >>> >>> >>> The frame index operands of the first two stores and the fourth load >>> have been lowered to real addresses. >>> Since the first two SWs store to ($sp + 44) and ($sp + 40), and >>> instruction LDC1 loads from ($sp + 40), >>> there should be a dependency between these instructions. >>> >>> However, when ScheduleDAGInstrs::BuildSchedGraph(AliasAnalysis *AA) >>> builds the schedule graph,...
2015 Jan 26
3
[LLVMdev] LLVM introduces racy read - Unsafe transformation?
...et void } : In the generated IR load(a) is independent of flag value which is not the case in the source program. Hence there is an introduced race between load(a) and store(a) operations when readA() and writeA() runs concurrently. Regards, soham > On 26 Jan 2015, at 15:22, sohachak at mpi-sws.org wrote: >> >> The source program has no data race if flag=false. But the target >> program >> is racy due to the introduced load(a) operation. >> >> This is a benign race since the load(a) is used only when flag=true. >> >> However, according to th...
2004 Aug 23
2
Bug#267587: logcheck-database: Additional rule needed for postfix
Package: logcheck-database Version: 1.2.25 Severity: normal postfix/smtpd\[[0-9]+\]: lost connection after (CONNECT|DATA|RCPT|RSET|EHLO|HELO|MAIL) from Please include the above line in the ignore.d/server/postfix file. That catches messages that occur very often on busy Postfix servers. -- System Information: Debian Release: 3.1 APT prefers unstable APT policy: (500, 'unstable')
2008 Dec 09
1
RCurl::postForm() -- how does one determine what the names are of each form element in an online html form?
Dear R-Help, I am looking into using the Open Calais web service (http:// sws.clearforest.com/calaisViewer/) for text mining purposes. I would like to use R to post text into one of the forms on their website. In package RCurl, there is a function called postForm(). This sounds like it would do the job. Unfortunately the URL used in the example is no longer valid (i have em...
2024 Jun 15
2
code for year month day hr format
Thank you Rui. I ran the following script df1 <- read.table("solar_hour", header = TRUE) df1$date <- as.Date(paste(df1$year, df1$hour), format = "%Y %j", origin = "2012-08-01-0") df2 <- df1[c("date", "IMF", "SWS", "SSN", "Dst", "f10")] head(df1) #To display all the rows print(df2). It gave me this error message > source ("script.R") Error in `$<-.data.frame`(`*tmp*`, date, value = numeric(0)) : replacement has 0 rows, data has 38735 > print(df2) Erro...
2001 Mar 27
1
Problem with a share
Hello Samba friends, sometimes i have this messages in my Samba Log (2.06). Then, i have a problem to connect me to the share. Can anyone tell me what the problem is ? 305513 (193.101.245.125) couldn't find service d3n [2001/03/16 12:47:17, 0] lib/util_sock.c:(474) read_socket_data: recv failure for 4. Error = Connection reset by peer [2001/03/16 12:51:54, 0] smbd/service.c:(209)
2012 Mar 15
2
[LLVMdev] Question about post RA scheduler
...ixedStack-1](align=8) >>>>       %D0<def> = LDC1 %SP, 40; mem:LD8[%x2] >>>> >>>> >>>> The frame index operands of the first two stores and the fourth load >>>> have been lowered to real addresses. >>>> Since the first two SWs store to ($sp + 44) and  ($sp + 40), and >>>> instruction LDC1 loads from ($sp + 40), >>>> there should be a dependency between these instructions. >>>> >>>> However, when ScheduleDAGInstrs::BuildSchedGraph(AliasAnalysis *AA) >>>> builds t...
2024 Jun 15
2
code for year month day hr format
....0 386. 132 -1 154.6 2012 215 0 5.0 377. 143 -1 138.6 2012 215 1 4.9 384. 143 -2 138.6 2012 215 2 4.9 390. 143 -4 138.6 2012 215 3 4.9 372. 143 -6 138.6 2012 215 4 5.1 371. 143 -4 138.6 I want to process it to be of the format as shown below y m d hr imf sws ssn Dst f10.7 2012-08-01 10 3.4 403. 132 -9 154.6 2012-08-01 12 3.7 388. 132 -10 154.6 2012-08-01 15 3.7 383. 132 -10 154.6 2012-08-01 17 3.7 391. 132 -9 154.6 I want to request an R code to accomplish this task. Thanks for your time. *Jibrin Adejoh Alhassan (Ph.D)* Department of...
2014 Apr 17
2
[Bug 77586] New: [NV98] On recent Linux kernel (3.13 and 3.14), the GPU locks up around the time an X server starts
...Summary: [NV98] On recent Linux kernel (3.13 and 3.14), the GPU locks up around the time an X server starts QA Contact: xorg-team at lists.x.org Severity: major Classification: Unclassified OS: Linux (All) Reporter: jkloos at mpi-sws.org Hardware: x86-64 (AMD64) Status: NEW Version: unspecified Component: Driver/nouveau Product: xorg Created attachment 97525 --> https://bugs.freedesktop.org/attachment.cgi?id=97525&action=edit dmesg output, as of running Linux 3.14...
2024 Jun 15
1
code for year month day hr format
...15 0 5.0 377. 143 -1 138.6 > 2012 215 1 4.9 384. 143 -2 138.6 > 2012 215 2 4.9 390. 143 -4 138.6 > 2012 215 3 4.9 372. 143 -6 138.6 > 2012 215 4 5.1 371. 143 -4 138.6 > I want to process it to be of the format as shown below > y m d hr imf sws ssn Dst f10.7 > 2012-08-01 10 3.4 403. 132 -9 154.6 > 2012-08-01 12 3.7 388. 132 -10 154.6 > 2012-08-01 15 3.7 383. 132 -10 154.6 > 2012-08-01 17 3.7 391. 132 -9 154.6 > I want to request an R code to accomplish this task. Thanks for your time. > *Jibrin Adejoh A...
2004 Jun 30
12
New addition to FAQ
Greetings, I was on IRC about 7 hours ago and suggested that the FAQ be updated slightly. Rather than sit on my ass and complain I figured I'd ask a few people, and see if the idea was worth the time. Here's what Ive started with: http://www.dimension.net.nz/theora.html I'll be adding to it over the next 24 hours - mostly in the area of Playback and Encoding. Just threw it together
2015 Jan 26
2
[LLVMdev] LLVM introduces racy read - Unsafe transformation?
Hi, I am looking for thoughts on the following LLVM transformation. Consider the following transformation which replaces conditional load(a) with load(a);select instructions. Source -------- int a; bool flag; int readA() { int r=0; if(flag) { r = a; } return r; } Command -------- clang++ -std=c++11 -pthread -emit-llvm <filename>.cpp -S;opt -O3 <filename>.ll -o
2024 Jun 16
2
code for year month day hr format
...Thank you Rui. I ran the following script > df1 <- read.table("solar_hour", header = TRUE) > df1$date <- as.Date(paste(df1$year, df1$hour), > format = "%Y %j", > origin = "2012-08-01-0") > df2 <- df1[c("date", "IMF", "SWS", "SSN", "Dst", "f10")] > head(df1) > #To display all the rows > print(df2). > It gave me this error message >> source ("script.R") > Error in `$<-.data.frame`(`*tmp*`, date, value = numeric(0)) : > replacement has 0 rows,...
2007 Jun 27
0
Branch 'as' - 16 commits - configure.ac libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_function.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_script_function.c
...nome.org> Date: Tue Jun 26 13:41:25 2007 +0200 Merge branch 'master' into as diff-tree 5cdaada235a5bf34316aa5faa3a3b4fc1d2b515c (from 00d9cad4c135dba8df2cffea271d0ad5935440b1) Author: Benjamin Otte <otte at gnome.org> Date: Tue Jun 26 13:35:15 2007 +0200 Check for libswscale, too diff --git a/configure.ac b/configure.ac index 1766eaf..f366094 100644 --- a/configure.ac +++ b/configure.ac @@ -196,7 +196,7 @@ AC_ARG_ENABLE(ffmpeg, enable_ffmpeg="yes") if test "$enable_ffmpeg" = "yes"; then - PKG_CHECK_MODULES(FFMPEG, libavcodec, HAV...