diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2015-10-16 14:45:45 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2015-10-16 17:45:09 +0200 |
commit | b52307933b576eba741c80108c3dad09eb48ba12 (patch) | |
tree | 35a522dc6b34a1833bf46e74a8009ff840964583 /libavcodec/wrapped_avframe.c | |
parent | 49d7fcd774ac31f242818ad9d45d9c013f3bb3db (diff) | |
download | ffmpeg-b52307933b576eba741c80108c3dad09eb48ba12.tar.gz |
wrapped_avframe: Drop a now-unused variable
Diffstat (limited to 'libavcodec/wrapped_avframe.c')
-rw-r--r-- | libavcodec/wrapped_avframe.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/wrapped_avframe.c b/libavcodec/wrapped_avframe.c index 9d504dbd06..e1273e49d7 100644 --- a/libavcodec/wrapped_avframe.c +++ b/libavcodec/wrapped_avframe.c @@ -43,7 +43,6 @@ static int wrapped_avframe_encode(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet) { AVFrame *wrapped = av_frame_clone(frame); - int ret; if (!wrapped) return AVERROR(ENOMEM); |