diff mbox

[FFmpeg-devel,4/4] ffmpeg: replace use of av_copy_packet_side_data()

Message ID 20170925010612.9824-4-jamrial@gmail.com
State New
Headers show

Commit Message

James Almer Sept. 25, 2017, 1:06 a.m. UTC
Signed-off-by: James Almer <jamrial@gmail.com>
---
 ffmpeg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/ffmpeg.c b/ffmpeg.c
index 1d248bc269..a3ea4c84a6 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2077,7 +2077,7 @@  static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *p
         opkt.data = pkt->data;
         opkt.size = pkt->size;
     }
-    av_copy_packet_side_data(&opkt, pkt);
+    av_packet_copy_side_data(&opkt, pkt);
 
 #if FF_API_LAVF_FMT_RAWPICTURE
     if (ost->st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&