Displaying 3 results from an estimated 3 matches for "samples_in_record".
Did you mean:
sample_in_record
2008 Dec 15
3
liboggplay: RGBA overlay video, rendering with libtiger
Hi,
the attached patch adds rendering of Kate streams
using libtiger. To do so, it adds a new type of RGBA video.
One can request the incoming video (in YUV) to be sent
in RGBA (ie, asking liboggplay to do the conversion in the
first place).
The large changes in the GLUT player also include fixes
for crash-on-no-sound, mono sound, and locking fixes
(I *think* - at least it works fine for me
2008 Dec 16
0
liboggplay: RGBA overlay video, rendering with libtiger
...cord' but a bug has been raised about
that):
+ orecord = (OggPlayOverlayRecord*)malloc (size);
+ oggplay_data_initialise_header((OggPlayDecode *)decode,
&(orecord->header));
NULL check needed here:
+ record = (OggPlayOverlayRecord*)calloc (1, size);
+ record->header.samples_in_record = 1;
Chris.
2008 Dec 16
1
liboggplay: RGBA overlay video, rendering with libtiger
...loc needed here (the sample problem
> occurs in existing code with 'record' but a bug has been raised about
> that):
Yes, adapted from existing, will change.
> NULL check needed here:
>
> + record = (OggPlayOverlayRecord*)calloc (1, size);
> + record->header.samples_in_record = 1;
OK
Thanks for the comments!