Displaying 2 results from an estimated 2 matches for "oggz_content_type".
2008 Jul 31
1
oggz fixes for macos
On 31-Jul-08, at 9:43 AM, ogg.k.ogg.k at googlemail.com wrote:
> though (don't know if they're related to your changes):
>
> oggz.c: In function 'oggz_content_type':
> oggz.c:623: warning: comparison of unsigned expression < 0 is
> always false
This is an array bounds guard. I guess it's defensive programming vs
warning. Making OggzStreamContent a (signed) int is probably the
safest, but I don't know the rules for enums.
> oggz...
2009 Apr 10
0
Oggz 0.9.9 Release
...X (rillian)
* Allow compilation of the library on win32 using Visual Studio 2003
and 2005. The project files have been updated to fix previous errors
with compiling using both of these IDEs.
Patch by Barry Duncan, and regenerated by ogg.k.ogg.k
Internal
--------
* Add oggz_content_type() public API function:
Returns a human-readable string representation of a content type
* Add API functions for getting and seting preroll:
oggz_get_preroll(), oggz_set_preroll()
Set preroll in oggz_auto.c for vorbis and speex
* Kate updates (ogg.k.ogg.k)
* Parse BOS page before call...