diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-27 20:38:34 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-27 20:44:40 +0200 |
commit | a59d922d24883aabb3d43901aba876495a4e9430 (patch) | |
tree | 2aa34bf1e1ad384c933ca47b8077ba3afb1f6c32 | |
parent | 7997d78643797d6d26babc4eabbda71049457169 (diff) | |
parent | ff771f79b55a346b4163d814b58ee4c98114745e (diff) | |
download | ffmpeg-a59d922d24883aabb3d43901aba876495a4e9430.tar.gz |
Merge commit 'ff771f79b55a346b4163d814b58ee4c98114745e'
* commit 'ff771f79b55a346b4163d814b58ee4c98114745e':
vc1: Initialize start_code_found to 0
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/vc1_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1_parser.c b/libavcodec/vc1_parser.c index 8721e09614..33e672fa0f 100644 --- a/libavcodec/vc1_parser.c +++ b/libavcodec/vc1_parser.c @@ -127,7 +127,7 @@ static int vc1_parse(AVCodecParserContext *s, uint8_t *unesc_buffer = vpc->unesc_buffer; size_t unesc_index = vpc->unesc_index; VC1ParseSearchState search_state = vpc->search_state; - int start_code_found; + int start_code_found = 0; int next = END_NOT_FOUND; int i = vpc->bytes_to_skip; |