Tagged Questions
The adts tag has no wiki summary.
4
votes
3answers
283 views
Is there a way to implement algebraic types in Java?
Is it possible, in Java, to enforce that a class have a specific set of subclasses and no others? For example:
public abstract class A {}
public final class B extends A {}
public final class C ...
3
votes
7answers
4k views
Hiding a “local” type parameter in Java
Suppose I'm using an interface with a generic type parameter
interface Foo<T> {
T getOne();
void useOne(T t);
}
The intention is that the type T is abstract: it enforces a type constraint ...
2
votes
0answers
97 views
iPhone HE-AAC Streaming over Mobile Network (3G)
Developed an internet radio streamer using jPlayer which utilizes the html5 audio tags with jQuery and has a flash fall back for unsupported browsers. Upon testing the player on the iPhone (iOS ...
2
votes
1answer
293 views
BST Level Traversal
Ok, so I'm trying to do a level order traversal of a binary search tree and its not working. The code below makes sense to me, but that is probably because I've been looking at it forever and I've ...
1
vote
1answer
235 views
Invalid ADTS sampling_frequency_index and channel_configuration why?
I hope someone can direct me on the right path before I put a lot of time and effort on this. I'm currently trying to parse an AAC+ frame to get information such as number of channels and sample ...
1
vote
1answer
264 views
Handling unions, subsets and supersets in Scala
I need to write a code snippet that would compare multiple arrays and produce the set that match the data in those arrays, produce the data set only in array A, but not in array B,C,D,in array B but ...
0
votes
0answers
6 views
Documentum ADTS services are being Slow
We are facing Serious issue, with Documentun ADTS transformation Issue
Users are saying they are reciveing Rendition very LATE (Approx 45 to 1hr for document of 37 kb type) This is a critical ...
0
votes
0answers
16 views
Can anyone tell me how to perform audio recording in adts raw aac format in ice cream sandwich
Ice cream sandwich has new feature of supporting audio recording in adts raw aac format but i am not able to find the api for it on developer.android.com?
Can anyone tell me how i can develop an ...
0
votes
0answers
34 views
ADTS service in Documentum
We have encountered that a user has received rendition of a document quite late as they were supposed to be, I have the name and Object ID of the document:
In DA I tried to use following DQL query:
...
0
votes
0answers
135 views
How to get an adts package with afconvert
i would like to get an atds package with aacp inside with the help of afconvert.
This seems to work
afconvert -f 'adts' -d 'aach@44100' -b 52600 in.mp3 out.aac
however this don“t
afconvert -f ...
0
votes
1answer
341 views
Creating ADTS frame on iPhone… problem
I am getting raw aac data from web stream and try to put it in ADTS frame in order to play it on iPhone.
It works for 10 seconds then sound stops and restart but seems accelerated or mixed with ...
0
votes
2answers
168 views
Tree Abstact Data Type
I'm doing a unit called Data Structures and Algorithms. We've just started and my professor has just taught us the basics of what Algebraic Semantics is and what Axioms are etc. Till now, I've just ...
0
votes
2answers
165 views
OpenJDK7: What essential ADTs are not Implemented in OpenJDK7?
What Abstract Datatypes should be added to OpenJDK7 ?