FS-8239 fix default value to avoid failed mod_av build on CentOS 7

This commit is contained in:
matteo brancaleoni 2015-09-30 09:23:30 +02:00
parent 33ffdb34a8
commit fe1fa8c8fb
1 changed files with 1 additions and 1 deletions

View File

@ -1118,7 +1118,7 @@ static void mod_avformat_destroy_output_context(av_file_context_t *context)
static switch_status_t open_input_file(av_file_context_t *context, switch_file_handle_t *handle, const char *filename)
{
AVCodec *audio_codec = NULL;
AVCodec *video_codec;
AVCodec *video_codec = NULL;
int error;
int i;
switch_status_t status = SWITCH_STATUS_SUCCESS;