GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
fame_encode_slice(3) fame_encode_slice fame_encode_slice(3)

fame_encode_slice - encode a single slice

#include <fame.h>

int fame_encode_slice(fame_context_t *context);

fame_encode_slice() encodes a single slice (part of frame). Slices are processed from top to bottom of frame. The number of slices to process depends on the slices_per_frame parameter specified during fame_init

fame_start_frame should be called before coding the first slice and fame_end_frame should be called after coding the last slice.

context is the context handle previously returned by fame_open

fame_encode_slice returns the number of bytes written to the bitstream buffer. If all slices have been coded, zero is returned.


fame_start_frame(fc, &yuv, NULL); while((length = fame_encode_slice(fc)) != 0) write(output, buffer, length); fame_end_frame(fc, NULL);

MMX arithmetic performs bad at quality > 95%. Encoding of B frames is not yet supported.

fame_open(3), fame_init(3), fame_close(3), fame_start_frame(3), fame_end_frame(3)

Febrary 19, 2002 libfame

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.