From: Limin Wang <[email protected]>
Signed-off-by: Limin Wang <[email protected]>
---
libavformat/movenc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index edddfee..503f099 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -518,7 +518,7 @@ concatenate:
memcpy(info->pkt.data + info->pkt.size - pkt->size, pkt->data,
pkt->size);
info->num_blocks += num_blocks;
info->pkt.duration += pkt->duration;
- if ((ret = av_copy_packet_side_data(&info->pkt, pkt)) < 0)
+ if ((ret = av_packet_copy_props(&info->pkt, pkt)) < 0)
goto end;
if (info->num_blocks != 6)
goto end;
--
2.6.4
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".