summaryrefslogtreecommitdiff
path: root/libavformat/mux.c
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-09-05 16:51:53 +0200
committerHendrik Leppkes <h.leppkes@gmail.com>2015-09-05 16:51:53 +0200
commit83a5df54eae6dddea7c453fd25c45c7b9c148925 (patch)
treedd2055e828b1c4dce1b80b0f077c4a658e7700f7 /libavformat/mux.c
parent87c88122703f2befcf96383d05bdf14373c22df9 (diff)
Remove left-over FF_API_DESTRUCT_PACKET cruft
Diffstat (limited to 'libavformat/mux.c')
-rw-r--r--libavformat/mux.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c
index a57b69642c..f2c137fa9e 100644
--- a/libavformat/mux.c
+++ b/libavformat/mux.c
@@ -1059,11 +1059,6 @@ int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
pkt->buf = local_pkt.buf;
pkt->side_data = local_pkt.side_data;
pkt->side_data_elems = local_pkt.side_data_elems;
-#if FF_API_DESTRUCT_PACKET
-FF_DISABLE_DEPRECATION_WARNINGS
- pkt->destruct = local_pkt.destruct;
-FF_ENABLE_DEPRECATION_WARNINGS
-#endif
return ret;
}