# HG changeset patch # User michael # Date 1262835045 0 # Node ID ec6cbd8fcd6caec1d2c633be67fa52a6169d139b # Parent 90f34aa8fe0afc18c63c01bb29e245b4f4d3c26a Document h263_get_picture_format(). diff -r 90f34aa8fe0a -r ec6cbd8fcd6c mpegvideo.h --- a/mpegvideo.h Wed Jan 06 23:15:33 2010 +0000 +++ b/mpegvideo.h Thu Jan 07 03:30:45 2010 +0000 @@ -839,7 +839,14 @@ DCTELEM block[6][64]); int ff_mpeg4_decode_mb(MpegEncContext *s, DCTELEM block[6][64]); + +/** + * Returns the value of the 3bit "source format" syntax element. + * that represents some standard picture dimensions or indicates that + * width&height are explicitly stored later. + */ int h263_get_picture_format(int width, int height); + void ff_mpeg4_encode_video_packet_header(MpegEncContext *s); void ff_mpeg4_clean_buffers(MpegEncContext *s); void ff_mpeg4_stuffing(PutBitContext * pbc);