diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2013-09-29 19:45:57 -0400 |
---|---|---|
committer | Sean McGovern <gseanmcg@gmail.com> | 2014-04-14 23:19:18 -0400 |
commit | d946e4c1bcfb6accd97f6d4cbfa324ef01913c8d (patch) | |
tree | 4c599761c02dad7ce803a29eed8af6cbba231fa6 | |
parent | 0c5e6c542f5efffb4cd770e84967478b0076a6e5 (diff) | |
download | ffmpeg-d946e4c1bcfb6accd97f6d4cbfa324ef01913c8d.tar.gz |
bytestream: add bytestream2_copy_buffer() functions
This is basically an overread/overwrite-safe memcpy between a
GetByteContext and a PutByteContext.
CC:libav-stable@libav.org
(cherry picked from commit 5748faf291fec297ef25d81962b52b3438f54278)
-rw-r--r-- | libavcodec/bytestream.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libavcodec/bytestream.h b/libavcodec/bytestream.h index 63d61f1132..3eab225f9c 100644 --- a/libavcodec/bytestream.h +++ b/libavcodec/bytestream.h @@ -325,6 +325,32 @@ static av_always_inline unsigned int bytestream2_get_eof(PutByteContext *p) return p->eof; } +static av_always_inline unsigned int bytestream2_copy_bufferu(PutByteContext *p, + GetByteContext *g, + unsigned int size) +{ + memcpy(p->buffer, g->buffer, size); + p->buffer += size; + g->buffer += size; + return size; +} + +static av_always_inline unsigned int bytestream2_copy_buffer(PutByteContext *p, + GetByteContext *g, + unsigned int size) +{ + int size2; + + if (p->eof) + return 0; + size = FFMIN(g->buffer_end - g->buffer, size); + size2 = FFMIN(p->buffer_end - p->buffer, size); + if (size2 != size) + p->eof = 1; + + return bytestream2_copy_bufferu(p, g, size2); +} + static av_always_inline unsigned int bytestream_get_buffer(const uint8_t **b, uint8_t *dst, unsigned int size) |