Displaying 3 results from an estimated 3 matches for "th_encctl_set_splevel".
2008 Nov 30
1
ogg_stream_pageout function...
I write this small piece of code, that get pixels and encode them:
ogg_page page;
ogg_packet packet;
m_frameSource.getYUVBits(m_buffer.y, m_buffer.u, m_buffer.v);
theora_encode_YUVin(&m_encoder, &m_buffer);
while(theora_encode_packetout(&m_encoder, isLastFrame, &packet))
ogg_stream_packetin(&m_oggStream, &packet);
while
2009 Aug 12
2
libtheora 1.1beta2 release
I've put up a second beta for testing. libtheora-1.1beta2:
- Improves rate control with difficult-to-encode input (the huskies issue)
- Has all the example code ported to the 1.0 api
- Builds on OpenBSD and Apple Xcode
- TH_ENCCTL_SET_SPLEVEL is work again for trading of encode speed
for quality. There's now a TH_ENCCTL_GET_SPLEVEL as well for reading
the default/current setting.
- The encoder/decoder source tree split has been removed; everything
is in lib now.
Thanks to everyone who tested the last beta. I'll give i...
2009 Aug 12
2
libtheora 1.1beta2 release
I've put up a second beta for testing. libtheora-1.1beta2:
- Improves rate control with difficult-to-encode input (the huskies issue)
- Has all the example code ported to the 1.0 api
- Builds on OpenBSD and Apple Xcode
- TH_ENCCTL_SET_SPLEVEL is work again for trading of encode speed
for quality. There's now a TH_ENCCTL_GET_SPLEVEL as well for reading
the default/current setting.
- The encoder/decoder source tree split has been removed; everything
is in lib now.
Thanks to everyone who tested the last beta. I'll give i...