Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-02-17 20:22:55 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-02-17 23:16:14 +0300
commitc4ac30909e504a7f98bd02f4c8c92c5323608fa1 (patch)
treeceb2897ebc96f69fd151c5c2b79a852f805860ac /libavutil/hwcontext.c
parent02dfa64c088c87367c298a3f648454204656734f (diff)
avutil/hwcontext: Remove duplicate ;
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavutil/hwcontext.c')
-rw-r--r--libavutil/hwcontext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/hwcontext.c b/libavutil/hwcontext.c
index 200a10e188..08a0859752 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)