diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-02-17 18:22:55 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-02-17 21:16:14 +0100 |
commit | c4ac30909e504a7f98bd02f4c8c92c5323608fa1 (patch) | |
tree | ceb2897ebc96f69fd151c5c2b79a852f805860ac /libavutil | |
parent | 02dfa64c088c87367c298a3f648454204656734f (diff) | |
download | ffmpeg-streaming-c4ac30909e504a7f98bd02f4c8c92c5323608fa1.zip ffmpeg-streaming-c4ac30909e504a7f98bd02f4c8c92c5323608fa1.tar.gz |
avutil/hwcontext: Remove duplicate ;
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/hwcontext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/hwcontext.c b/libavutil/hwcontext.c index 200a10e..08a0859 100644 --- a/libavutil/hwcontext.c +++ b/libavutil/hwcontext.c @@ -167,7 +167,7 @@ AVBufferRef *av_hwframe_ctx_alloc(AVBufferRef *device_ref_in) AVHWDeviceContext *device_ctx = (AVHWDeviceContext*)device_ref_in->data; const HWContextType *hw_type = device_ctx->internal->hw_type; AVHWFramesContext *ctx; - AVBufferRef *buf, *device_ref = NULL;; + AVBufferRef *buf, *device_ref = NULL; ctx = av_mallocz(sizeof(*ctx)); if (!ctx) |