I'm decompressing a data part by part and i'm storing it in a CFixFlatArray then transfer it to a descriptor.
i'd like to ask if i can directly store it in a descriptor? can you give me a hint?
thanks.
I'm decompressing a data part by part and i'm storing it in a CFixFlatArray then transfer it to a descriptor.
i'd like to ask if i can directly store it in a descriptor? can you give me a hint?
thanks.
Hi,
You can TBuf and HBuf from sdk and it have api like Copy, Append etc.
Use Qt-Quick to make your application UI more attractive.
http://store.ovi.com/content/271896 | http://store.ovi.com/content/276199 | http://store.ovi.com/content/276202 | http://store.ovi.com/content/280827
hi..u van use a simple array of descriptor to store the data, part by part as follows:
TBuf<100>a[500]
500 array entries each having size of 100.
so u can store data one by one in different array elements
vineet jain,
is Tbuf can hold the data that can be played in the phone?
example:
// TBuf<100> a[500];
// CMdaAudioOutputStream* iStream;
iStream->WriteL(a[0]);
is this possible?