comparison libmpdemux/demux_lavf.c @ 36360:505fcd136e73

Ensure AVDictionary pointer is initialized.
author reimar
date Sun, 22 Sep 2013 07:31:55 +0000
parents 7dca7d4d4e54
children fc93e82b8afc
comparison
equal deleted inserted replaced
36359:dba1b5aa72c1 36360:505fcd136e73
506 mp_msg(MSGT_DEMUX, MSGL_INFO, "\n"); 506 mp_msg(MSGT_DEMUX, MSGL_INFO, "\n");
507 } 507 }
508 } 508 }
509 509
510 static demuxer_t* demux_open_lavf(demuxer_t *demuxer){ 510 static demuxer_t* demux_open_lavf(demuxer_t *demuxer){
511 AVDictionary *opts; 511 AVDictionary *opts = NULL;
512 AVFormatContext *avfc; 512 AVFormatContext *avfc;
513 AVDictionaryEntry *t = NULL; 513 AVDictionaryEntry *t = NULL;
514 lavf_priv_t *priv= demuxer->priv; 514 lavf_priv_t *priv= demuxer->priv;
515 int i; 515 int i;
516 char mp_filename[256]="mp:"; 516 char mp_filename[256]="mp:";