Displaying 1 result from an estimated 1 matches for "mode_param".
Did you mean:
module_param
2002 Mar 14
2
Ogg in MP4 file, Unexpected result from _vorbis_unpack_books
...I find the return (-133) is
caused by the _vorbis_unpack_books code in the lib/info.c in the
libvorbis library. In this code in the last poart of the function
_vorbis_unpack_books it says
----------------------------------------------------------------
for(i=0;i<ci->modes;i++){
ci->mode_param[i]=_ogg_calloc(1,sizeof(*ci->mode_param[i]));
ci->mode_param[i]->blockflag=oggpack_read(opb,1);
ci->mode_param[i]->windowtype=oggpack_read(opb,16);
ci->mode_param[i]->transformtype=oggpack_read(opb,16);
ci->mode_param[i]->mapping=oggpack_read(opb,8);...