diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-31 03:44:03 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-31 03:44:03 +0000 |
commit | ed68efad8b198cf36e1293424cdc57fc9602ee86 (patch) | |
tree | 18c25c18551e8a442d31d3f55fb1c1f2e9ae9407 /libavformat/mpegts.c | |
parent | 6a2a50f81fb4f93d0436034ca7d1dc41ff790ba6 (diff) | |
download | ffmpeg-ed68efad8b198cf36e1293424cdc57fc9602ee86.tar.gz |
remove no longer needed init
Originally committed as revision 19008 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpegts.c')
-rw-r--r-- | libavformat/mpegts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 5d2567109a..34983d945b 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -577,10 +577,10 @@ static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len const uint8_t *p, *p_end, *desc_list_end, *desc_end; int program_info_length, pcr_pid, pid, stream_type; int desc_list_len, desc_len, desc_tag; - int comp_page = 0, anc_page = 0; /* initialize to kill warnings */ - char language[4] = {0}; /* initialize to kill warnings */ + int comp_page, anc_page; + char language[4]; uint32_t prog_reg_desc = 0; /* registration descriptor */ - uint32_t reg_desc = 0; /* registration descriptor */ + uint32_t reg_desc; /* registration descriptor */ #ifdef DEBUG dprintf(ts->stream, "PMT: len %i\n", section_len); |