Skip to content
Snippets Groups Projects
Commit 61c9c253 authored by Tilghman Lesher's avatar Tilghman Lesher
Browse files

H.263 frames can apparently be larger than was originally coded.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37785 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 83f5766c
Branches
Tags
No related merge requests found
......@@ -49,7 +49,13 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
/* Portions of the conversion code are by guido@sienanet.it */
#define BUF_SIZE 4096 /* Two Real h263 Frames */
/* According to:
* http://lists.mpegif.org/pipermail/mp4-tech/2005-July/005741.html
* the maximum actual frame size is not 2048, but 8192. Since the maximum
* theoretical limit is not much larger (32k = 15bits), we'll go for that
* size to ensure we don't corrupt frames sent to us (unless they're
* ridiculously large). */
#define BUF_SIZE 32768 /* Four real h.263 Frames */
struct h263_desc {
unsigned int lastts;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment