diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-07 16:39:14 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-23 15:27:52 +0200 |
commit | c4584f3c1ff3997fd98c3cc992fe82cb99f6b248 (patch) | |
tree | 27ab1cbe0c48ac4f703782ede6039ba46b6924a4 /libavformat/rtpenc_h263.c | |
parent | c2ff63e3ac82d5ee501e480d4714e982fc45cf8b (diff) | |
download | ffmpeg-c4584f3c1ff3997fd98c3cc992fe82cb99f6b248.tar.gz |
rtpenc: Allow packetizing H263 according to the old RFC 2190
According to newer RFCs, this packetization scheme should only
be used for interfacing with legacy systems.
Implementing this packetization mode properly requires parsing
the full H263 bitstream to find macroblock boundaries (and knowing
their macroblock and gob numbers and motion vector predictors).
This implementation tries to look for GOB headers (which
can be inserted by using -ps <small number>), but if the GOBs
aren't small enough to fit into the MTU, the packetizer blindly
splits packets at any offset and claims it to be a GOB boundary
(by using Mode A from the RFC). While not correct, this seems
to work with some receivers.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtpenc_h263.c')
-rw-r--r-- | libavformat/rtpenc_h263.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libavformat/rtpenc_h263.c b/libavformat/rtpenc_h263.c index fbc696e1b4..87f0bd7981 100644 --- a/libavformat/rtpenc_h263.c +++ b/libavformat/rtpenc_h263.c @@ -23,8 +23,8 @@ #include "avformat.h" #include "rtpenc.h" -static const uint8_t *find_resync_marker_reverse(const uint8_t *restrict start, - const uint8_t *restrict end) +const uint8_t *ff_h263_find_resync_marker_reverse(const uint8_t *restrict start, + const uint8_t *restrict end) { const uint8_t *p = end - 1; start += 1; /* Make sure we never return the original start. */ @@ -63,7 +63,8 @@ void ff_rtp_send_h263(AVFormatContext *s1, const uint8_t *buf1, int size) /* Look for a better place to split the frame into packets. */ if (len < size) { - const uint8_t *end = find_resync_marker_reverse(buf1, buf1 + len); + const uint8_t *end = ff_h263_find_resync_marker_reverse(buf1, + buf1 + len); len = end - buf1; } |