Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
356 views

Multiplex on queue.Queue?

How can I go about "selecting" on multiple queue.Queue's simultaneously? Golang has the desired feature with its channels: select { case i1 = <-c1: print("received ", i1, " from c1\n") case ...
6
votes
4answers
127 views

Elegant way of implementing call multiplexing in a C++ aggregate class?

When multiplexing calls to many sub-objects, what is an elegant way of preventing looping-boilerplate code? Problem description by example: struct Foo { void Boo(); void Hoo(); bool ...
2
votes
1answer
1k views

Recording multiplexed Audio/Video to a file using JMF

I have a project that uses JMF, and records for a short time (a few seconds to a couple of minutes) both the web camera, and audio inputs, and then writes the results to a file. The problem with my ...
2
votes
4answers
276 views

Java NIO, to use or not to use a framework?

I'm developing a Java Based server, with NIO multiplex and I started to see a lot of frameworks... I don't understand if these frameworks makes the life easier only or has also an increment of ...
2
votes
3answers
760 views

C++ UDP Socket port multiplexing

How can I create a client UDP socket in C++ so that it can listen on a port which is being listened to by another application? In other words, how can I apply port multiplexing in C++?
2
votes
1answer
92 views

Mux & Demux w/ LINQ

I'm playing around with using LINQ to Objects for multiplexing and demultiplexing but it seems to me that this is a pretty tricky problem. See this demuxer signature: public static ...
2
votes
2answers
546 views

What does the term multiplexing mean in computer science?

What does multiplexing mean (in it's abstract form)? I understand you have 'multiplexers' in hardware and 'muxing' in networks. What would a good high-level definition be?
1
vote
2answers
61 views

C API and getting raw socket

I'm writing app that needs to commuicate with mysql. Its a single threaded application that uses epoll linux system call for multiplexing clients, but the problem is that everything stalls whenever ...
1
vote
2answers
306 views

VHDL mux implementation?

Is it possible to implement a mux with multiple control signals? For example, I want to do something like this: with (sig1 & sig2) select output <= A when "00", B when "01", C when "10", ...
1
vote
1answer
241 views

How to multiplex Vorbis and Theora streams using libogg

I am currently writing a simple Theora video encoder, which uses libogg, libvorbis and libtheora. Currently, I can submit frames to the Theora encoder, and PCM samples to the Vorbis encoder, pass the ...
0
votes
4answers
47 views

Efficiency of multible boolean flags vs multiplexed integer (bits) in Java and MySQL

This is a design question involving both Java and MySQL. The client requires the addition of 14 boolean flags (T/F) to keep track of some new information in an existing class/table. I can add these ...
0
votes
2answers
38 views

Licensing with 2 SQL Server databases

1) If I have a mobile application database written in SQL Server which has SQL Server CE databases on PDAs synchronising with it, can I get away with no licensing cost if I use the SQL Server Express ...
0
votes
1answer
89 views

fastcgi multiplexing?

I'm in process of implementation of a fastcgi application, after reading fastCGI spec I've found a feature called "request multiplexing". It reminded me Adobe RTMP multiplexing back in the days that ...
0
votes
1answer
99 views

RTSP Source Filter with GDCL MP4 Muxer incompatibility

I'm trying to use GDCL MP4 Muxer with my RTSP Source Filter. They work fine together except after stopping the graph, muxer doesn't finilize the file and write the reqiured tables to the end of file ...
0
votes
1answer
39 views

Time division multiplexing [closed]

I have a doubt regarding time division multipluxing. In GSM we are using time division multiplexing. In time division multiplxing, there is timeslots foreach signel. But while using GSM mobiles, we ...
0
votes
1answer
119 views

quartus how convert four input to two inputs in block?

how can i convert entity of bloch which takes 4 inputs to 2 inputs? A you see here i use three the same mux :( how to take in etykieta2 only two inputs? code: library ieee; use ...
0
votes
1answer
282 views

How to get calling button from a clicked event

I'm trying to make an small gui to deploy .ear and .war files on my local glassfish installation. SO i have made five rows containing a file name field, a checkbox and a button to bring up a file ...
0
votes
2answers
236 views

Will calling select()/pselect() in secondary thread cause primary thread to block?

I have an application that I'm working on that requires a couple of secondary threads, and each will be responsible for a number of file handles (at least 1, upwards of 10). The file handles are not ...
0
votes
0answers
103 views

multiplexer code

hi i have a Java library for working with multiplexer but i don't know how to take output from it ? any body can help ? this is the library link to download http://www.bozorgvar.com/multiplexer.rar
0
votes
1answer
306 views

Problem with MPEG2/MP4 video Demux

I've been working with Directshow for some time now. I've been working with codes (GMFBridge), and I recently started working with mp4demux. I saw it does a good work demuxing many compressed types, ...
0
votes
1answer
107 views

Connection Multiplexing

Supposing we have opened a connection of type either TCP or UDP to another remote machine. Having this connection, can we allow multiple connections virtually over this connection like VPN(but not ...
0
votes
2answers
139 views

screen broadcasting with multiplexation?

I want to broacast my screen, the problem is i've got very limited upload speed, if there are more than 2 clients screencast becomes absolutely awful. But i've got a server with a broadband channel ...
-1
votes
0answers
27 views

Using multiplexing in pantheios but want to give the user the option to stop output going to one of the backends at runtime

I am using the files pantheios/frontends/fe.N.h and pantheios/backends/be.N.h to allow output to go to multiple backends. Right now I have what I originally intended on which was to output to both the ...