Displaying 12 results from an estimated 12 matches for "streamid".
Did you mean:
streamed
2004 Feb 18
1
Precache an entire OGG?
...ere is y source for the decode/precache function. Why is it just freezing? I've let it run for about three minutes, thinking it was doing some heavy decoding, but I was wrong. Once this is fixed I'll release this player. Thanks for the help!
pSOUNDDATA OGGDATA::DecodeOGGLow()
{
int StreamID;
unsigned int Size, Read;
unsigned int Location, numStreams;
pSOUNDDATA pData;
if(pFile == NULL)
return NULL;
if((pData = (pSOUNDDATA)malloc(sizeof(sSOUNDDATA))) == NULL)
return NULL;
pData->Length = ov_pcm_total(&sOVFile, -1);
if((pData->Buffer = (char*)malloc(pD...
2004 Feb 11
1
Problem using 'ov_open()'...
...fclose(pFile);
return false;
case OV_EVERSION:
fclose(pFile);
return false;
case OV_EBADHEADER:
fclose(pFile);
return false;
case OV_EFAULT:
fclose(pFile);
return false;
}
return true;
}
pSOUNDDATA OGGDATA::DecodeOGGLow()
{
int StreamID;
unsigned int Size, Read, Location;
pSOUNDDATA pData;
if((pFile == NULL) || (pOVFile == NULL))
return NULL;
if((pData = (pSOUNDDATA)malloc(sizeof(sSOUNDDATA))) == NULL)
return NULL;
Size = ov_raw_total(pOVFile, -1);
if((pData->Buffer = (char*)malloc(Size)) == NULL)
{...
2020 May 25
3
child killed by signal 6
...il envelopes tody by accident, probably this part of
my telnet session might help:
a11 fetch 1 all
* 1 FETCH (RFC822.SIZE 16750 INTERNALDATE "22-May-2020 05:02:34 +0000"
ENVELOPE ("Fri, 22 May 2020 03:46:54 +0000" "RE: Http2 tomact server
taking time in responding when 1st StreamId is a large integer value
like 2147483641" (("Prateek Kohli" NIL "prateek.kohli"
"ericsson.com.INVALID")) (("Prateek Kohli" NIL "prateek.kohli"
"ericsson.com.INVALID")) (("Tomcat Users List" NIL "users"
"tomcat...
2003 May 28
2
encoder discrepancy
the files produced by windows compile vs. Linux are indeed significantly different in size (about 140K vs. 160) However I'm not convinced all the default parameters are set the same way in the two example files. This needs to be verified to see if there really is a bug, or can the two versions produce byte-equal output streams?
<p> ___ Dan Miller
(++,) Founder, On2 Technologies
2020 May 25
1
child killed by signal 6
...>> my telnet session might help:
>>
>> a11 fetch 1 all
>> * 1 FETCH (RFC822.SIZE 16750 INTERNALDATE "22-May-2020 05:02:34 +0000"
>> ENVELOPE ("Fri, 22 May 2020 03:46:54 +0000" "RE: Http2 tomact server
>> taking time in responding when 1st StreamId is a large integer value
>> like 2147483641" (("Prateek Kohli" NIL "prateek.kohli"
>> "ericsson.com.INVALID")) (("Prateek Kohli" NIL "prateek.kohli"
>> "ericsson.com.INVALID")) (("Tomcat Users List" NIL &qu...
2020 May 25
0
child killed by signal 6
...probably this part of
> my telnet session might help:
>
> a11 fetch 1 all
> * 1 FETCH (RFC822.SIZE 16750 INTERNALDATE "22-May-2020 05:02:34 +0000"
> ENVELOPE ("Fri, 22 May 2020 03:46:54 +0000" "RE: Http2 tomact server
> taking time in responding when 1st StreamId is a large integer value
> like 2147483641" (("Prateek Kohli" NIL "prateek.kohli"
> "ericsson.com.INVALID")) (("Prateek Kohli" NIL "prateek.kohli"
> "ericsson.com.INVALID")) (("Tomcat Users List" NIL "users&quo...
2018 Nov 27
3
[PATCH v5 0/7] Add virtio-iommu driver
Hi Michael,
On 11/27/18 5:53 PM, Michael S. Tsirkin wrote:
> On Thu, Nov 22, 2018 at 07:37:54PM +0000, Jean-Philippe Brucker wrote:
>> Implement the virtio-iommu driver, following specification v0.9 [1].
>>
>> Since v4 [2] I fixed the issues reported by Eric, and added Reviewed-by
>> from Eric and Rob. Thanks!
>>
>> I changed the specification to fix one
2018 Nov 27
3
[PATCH v5 0/7] Add virtio-iommu driver
Hi Michael,
On 11/27/18 5:53 PM, Michael S. Tsirkin wrote:
> On Thu, Nov 22, 2018 at 07:37:54PM +0000, Jean-Philippe Brucker wrote:
>> Implement the virtio-iommu driver, following specification v0.9 [1].
>>
>> Since v4 [2] I fixed the issues reported by Eric, and added Reviewed-by
>> from Eric and Rob. Thanks!
>>
>> I changed the specification to fix one
2019 Nov 22
16
[RFC 00/13] virtio-iommu on non-devicetree platforms
I'm seeking feedback on multi-platform support for virtio-iommu. At the
moment only devicetree (DT) is supported and we don't have a pleasant
solution for other platforms. Once we figure out the topology
description, x86 support is trivial.
Since the IOMMU manages memory accesses from other devices, the guest
kernel needs to initialize the IOMMU before endpoints start issuing DMA.
2019 Nov 22
16
[RFC 00/13] virtio-iommu on non-devicetree platforms
I'm seeking feedback on multi-platform support for virtio-iommu. At the
moment only devicetree (DT) is supported and we don't have a pleasant
solution for other platforms. Once we figure out the topology
description, x86 support is trivial.
Since the IOMMU manages memory accesses from other devices, the guest
kernel needs to initialize the IOMMU before endpoints start issuing DMA.
2018 Oct 12
18
[PATCH v3 0/7] Add virtio-iommu driver
Implement the virtio-iommu driver, following specification v0.8 [1].
Changes since v2 [2]:
* Patches 2-4 allow virtio-iommu to use the PCI transport, since QEMU
would like to phase out the MMIO transport. This produces a complex
topology where the programming interface of the IOMMU could appear
lower than the endpoints that it translates. It's not unheard of (e.g.
AMD IOMMU), and the
2018 Oct 12
18
[PATCH v3 0/7] Add virtio-iommu driver
Implement the virtio-iommu driver, following specification v0.8 [1].
Changes since v2 [2]:
* Patches 2-4 allow virtio-iommu to use the PCI transport, since QEMU
would like to phase out the MMIO transport. This produces a complex
topology where the programming interface of the IOMMU could appear
lower than the endpoints that it translates. It's not unheard of (e.g.
AMD IOMMU), and the