search for: advmail

Displaying 3 results from an estimated 3 matches for "advmail".

Did you mean: ad_mail
2008 Nov 26
1
[?] About YUV format
Hello. I read documentation, but I didn't found anything about encoder supported YUV format. Is Y in [0-255] or in [16,235]? And U,V are in [16,239]? I'm trying to write a fast (with lookup) conversion from RGB -> YUV... Thanks in advance, Andrea -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Nov 07
1
[?] About YUV formats...
Hello. I'm a theora newbie... I see it accept video frames in some differents YUV formats. How theora manage them internally? I mean: if i encode the same video twice, first time encoding it with YUV444 packets and then with YUV420, will second video be smaller than first (due to subsampling...)? Or theora compress them in the same way? Thanks in advance, A. F.
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