search for: oggplaydecod

Displaying 2 results from an estimated 2 matches for "oggplaydecod".

Did you mean: oggplaydecode
2008 Dec 16
0
liboggplay: RGBA overlay video, rendering with libtiger
...;= me->num_tracks) { + return E_OGGPLAY_BAD_TRACK; Check for NULL return from malloc needed here (the sample problem occurs in existing code with 'record' 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 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