Browse Source

Merge commit 'ff771f79b55a346b4163d814b58ee4c98114745e'

* commit 'ff771f79b55a346b4163d814b58ee4c98114745e':
  vc1: Initialize start_code_found to 0

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.4
Michael Niedermayer 11 years ago
parent
commit
a59d922d24
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/vc1_parser.c

+ 1
- 1
libavcodec/vc1_parser.c View File

@@ -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;



Loading…
Cancel
Save