Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-11-07 17:18:41 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-11-09 17:42:42 +0300
commitb59138b6819b97544fd2fc40a27fdac0d75b2287 (patch)
tree4463631883a9c8172d9cad6019a81fe9bc1afe4e /libavcodec/libx264.c
parent19ed9236db8796104c5a4f3343596172b01ebd1b (diff)
avcodec/libx264: Simplify copying packet data
x264.h: "the payloads of all output NALs are guaranteed to be sequential in memory." Therefore we can omit the loop. Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/libx264.c')
-rw-r--r--libavcodec/libx264.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
index 4fe02dd11c..5f62c7b1d8 100644
--- a/libavcodec/libx264.c
+++ b/libavcodec/libx264.c
@@ -139,7 +139,6 @@ static int encode_nals(AVCodecContext *ctx, AVPacket *pkt,
X264Context *x4 = ctx->priv_data;
uint8_t *p;
uint64_t size = x4->sei_size;
- int i;
int ret;
if (!nnal)
@@ -165,14 +164,14 @@ static int encode_nals(AVCodecContext *ctx, AVPacket *pkt,
if (x4->sei_size > 0) {
memcpy(p, x4->sei, x4->sei_size);
p += x4->sei_size;
+ size -= x4->sei_size;
x4->sei_size = 0;
av_freep(&x4->sei);
}
- for (i = 0; i < nnal; i++){
- memcpy(p, nals[i].p_payload, nals[i].i_payload);
- p += nals[i].i_payload;
- }
+ /* x264 guarantees the payloads of the NALs
+ * to be sequential in memory. */
+ memcpy(p, nals[0].p_payload, size);
return 1;
}