diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-07-28 14:30:23 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-08-28 16:01:16 +0200 |
commit | 01bcc2d5c23fa757d163530abb396fd02f1be7c8 (patch) | |
tree | 1c15e03246819b364d1cfc691c6bbfd9db784955 /libavformat/yop.c | |
parent | dc70c19476e76f1118df73b5d97cc76f0e5f6f6c (diff) | |
download | ffmpeg-01bcc2d5c23fa757d163530abb396fd02f1be7c8.tar.gz |
lavc: Drop deprecated destruct_packet related functions
Deprecated in 10/2012.
Diffstat (limited to 'libavformat/yop.c')
-rw-r--r-- | libavformat/yop.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavformat/yop.c b/libavformat/yop.c index b809ad2b56..1e429d344a 100644 --- a/libavformat/yop.c +++ b/libavformat/yop.c @@ -127,11 +127,6 @@ static int yop_read_packet(AVFormatContext *s, AVPacket *pkt) *pkt = yop->video_packet; yop->video_packet.data = NULL; yop->video_packet.buf = NULL; -#if FF_API_DESTRUCT_PACKET -FF_DISABLE_DEPRECATION_WARNINGS - yop->video_packet.destruct = NULL; -FF_ENABLE_DEPRECATION_WARNINGS -#endif yop->video_packet.size = 0; pkt->data[0] = yop->odd_frame; pkt->flags |= AV_PKT_FLAG_KEY; |