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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-07-23 23:53:33 +0400
committerPaul B Mahol <onemda@gmail.com>2012-07-23 23:58:13 +0400
commitebe846fa7311d91421ee801bcf8a898a7c11fe6b (patch)
treeffc3da7659b52e1bc78886b79ddf3a9ae616cec2 /libavfilter/vf_colormatrix.c
parent2cb4d516549526b5e17e941f6d2375a2c501ade6 (diff)
vf_colormatrix: add missing semicolon
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_colormatrix.c')
-rw-r--r--libavfilter/vf_colormatrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_colormatrix.c b/libavfilter/vf_colormatrix.c
index bb66bd3d6a..45bff8f6e4 100644
--- a/libavfilter/vf_colormatrix.c
+++ b/libavfilter/vf_colormatrix.c
@@ -61,7 +61,7 @@ typedef struct {
char src[256];
char dst[256];
int hsub, vsub;
- AVFilterBufferRef *outpicref
+ AVFilterBufferRef *outpicref;
} ColorMatrixContext;
#define ma m[0][0]