ffmpeg/libavformat
Alessandro Ghedini 6998a9f4c4 http: Properly initialize icy headers string
The icy_metadata_headers string never gets initialized, so,
during the first call to av_strlcatf() in parse_icy(),
strlen() will be called on a pointer to uninitialized memory.
At best this causes some garbage data to be left at the
start of the string.

By initializing icy_metadata_headers to the empty string, the
first call to strlen() will always return 0, so that data is
appended from the start of the string.

Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2014-03-12 20:13:36 +01:00
..
4xm.c
Makefile matroskaenc: write private data in hvcC format for HEVC. 2014-03-09 18:09:40 +01:00
a64.c
aacdec.c
ac3dec.c
adtsenc.c
adxdec.c
aea.c
aiff.h
aiffdec.c
aiffenc.c Add missing #includes for *INT64_MAX and *INT64_C 2013-11-23 21:55:52 +01:00
allformats.c Add raw HEVC muxer 2014-02-09 14:15:44 +00:00
amr.c
anm.c
apc.c
ape.c
apetag.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
apetag.h
asf.c
asf.h
asfcrypt.c
asfcrypt.h
asfdec.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
asfenc.c
assdec.c ass: K&R formatting cosmetics 2014-03-02 13:23:13 +01:00
assenc.c
au.c
audiointerleave.c
audiointerleave.h
avc.c
avc.h
avformat.h doxygen: Replace @parblock syntax with manual linebreaks 2014-02-17 15:36:17 +01:00
avi.h
avidec.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
avienc.c avienc: K&R formatting cosmetics 2014-03-04 18:53:58 +01:00
avio.c lavf: Remove a now useless parameter to ffurl_register_protocol 2013-10-30 09:53:48 +02:00
avio.h doxygen: Add a number of missing function parameter descriptions 2014-02-17 15:36:09 +01:00
avio_internal.h
aviobuf.c aviobuf: Handle a NULL buffer in avio_close_dyn_buf 2013-11-01 09:56:27 +02:00
avisynth.c avisynth: fix setting packet properties 2014-01-17 11:11:08 +01:00
avlanguage.c
avlanguage.h
avs.c
bethsoftvid.c
bfi.c bfi: Add some very basic sanity checks for input packet sizes 2013-09-29 19:59:32 +03:00
bink.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
bmv.c bmv: Remove unused variable 2013-10-06 19:36:53 +02:00
c93.c
caf.c
caf.h
cafdec.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
cavsvideodec.c
cdg.c
cdxl.c
concat.c lavf: Allocate arrays with av_realloc if they will be realloced later 2013-09-26 23:13:53 +03:00
crcenc.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
crypto.c
cutils.c
daud.c
dfa.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
diracdec.c
dnxhddec.c
dsicin.c
dtsdec.c
dv.c dv: Split DV data table declarations into their own header 2013-11-15 01:29:47 +01:00
dv.h
dvenc.c dv: Split DV data table declarations into their own header 2013-11-15 01:29:47 +01:00
dxa.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
eacdata.c
electronicarts.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
ffm.h
ffmdec.c Add missing #includes for *INT64_MAX and *INT64_C 2013-11-23 21:55:52 +01:00
ffmenc.c
ffmeta.h
ffmetadec.c
ffmetaenc.c
file.c
file_open.c
filmstripdec.c
filmstripenc.c
flac_picture.c flac: move picture parsing code in a separate file 2013-10-12 15:30:39 +02:00
flac_picture.h flac: move picture parsing code in a separate file 2013-10-12 15:30:39 +02:00
flacdec.c flac: move picture parsing code in a separate file 2013-10-12 15:30:39 +02:00
flacenc.c flac muxer: add option to disable writing the global header 2014-01-09 16:09:41 -05:00
flacenc.h
flacenc_header.c
flic.c
flv.h
flvdec.c flv: Workaround for buggy Omnia A/XE encoder 2014-01-11 13:14:20 +01:00
flvenc.c flv: Use the correct type to hold the file offset 2013-12-20 17:44:20 +01:00
format.c
framecrcenc.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
framehash.c
g722.c
g723_1.c
gif.c
gopher.c
gsmdec.c
gxf.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
gxf.h
gxfenc.c
h261dec.c
h263dec.c
h264dec.c
hdsenc.c hdsenc: Check the init_file() return code 2013-12-14 17:48:46 +02:00
hevc.c lavf: always use av_free 2014-03-10 18:02:55 +01:00
hevc.h lavf: simplify ff_hevc_annexb2mp4_buf 2014-03-10 18:02:36 +01:00
hevcdec.c Add raw HEVC demuxer 2013-10-31 20:20:24 +01:00
hls.c hls: Avoid reading outside of the allocated array 2013-11-22 14:27:10 +02:00
hlsenc.c Add missing #includes for *INT64_MAX and *INT64_C 2013-11-23 21:55:52 +01:00
hlsproto.c
hnm.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
http.c http: Properly initialize icy headers string 2014-03-12 20:13:36 +01:00
http.h
httpauth.c
httpauth.h
id3v1.c
id3v1.h
id3v2.c
id3v2.h
id3v2enc.c
idcin.c
idroqdec.c
idroqenc.c
iff.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
ilbc.c
img2.c img2: add stereo 3d still picture file extensions 2013-12-12 16:10:15 +01:00
img2dec.c
img2enc.c Add a libwebp encoder 2013-12-21 17:01:42 -05:00
ingenientdec.c
internal.h lavf: ignore attachment streams for interleaving purposes 2014-02-04 11:17:06 +01:00
ipmovie.c
isom.c movenc: allow muxing HEVC in MODE_MP4. 2014-03-09 18:09:40 +01:00
isom.h lavf: improve support for AVC-Intra files. 2013-11-14 18:59:39 +01:00
iss.c
iv8.c
ivfdec.c
ivfenc.c
jvdec.c jv: detect partial packets in the demuxer 2014-02-12 20:12:18 +01:00
latmenc.c
libavformat.v
librtmp.c
lmlm4.c
log2_tab.c
lxfdec.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
m4vdec.c
matroska.c matroskadec: Support HEVC demuxing 2013-10-31 20:20:49 +01:00
matroska.h
matroskadec.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
matroskaenc.c matroskaenc: enable Annex B to MP4 conversion for HEVC tracks. 2014-03-09 18:09:40 +01:00
md5enc.c
md5proto.c
metadata.c
metadata.h
mm.c
mmf.c
mms.c mms: Remove non-utf8 characters 2013-12-26 06:07:35 +01:00
mms.h
mmsh.c
mmst.c mms: Remove non-utf8 characters 2013-12-26 06:07:35 +01:00
mov.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
mov_chan.c
mov_chan.h
movenc.c movenc: allow muxing HEVC in MODE_MP4. 2014-03-09 18:09:40 +01:00
movenc.h movenc: Add an F4V muxer 2013-10-23 11:17:03 +03:00
movenchint.c
mp3dec.c
mp3enc.c mp3enc: allow omitting the id3v2 header with -id3v2_version 0 2014-01-17 10:30:45 +01:00
mpc.c
mpc8.c
mpeg.c
mpeg.h
mpegenc.c Add missing #includes for *INT64_MAX and *INT64_C 2013-11-23 21:55:52 +01:00
mpegts.c mathops: move macro to the only place it is used 2014-03-04 11:45:31 +01:00
mpegts.h
mpegtsenc.c
mpegvideodec.c
mpjpeg.c
msnwc_tcp.c
mtv.c
mux.c lavf: always unref the packet passed to av_interleaved_write_frame() on error 2014-02-10 15:08:06 +01:00
mvi.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
mxf.c mxf: Introduce ff_mxf_get_samples_per_frame 2014-03-06 19:28:20 +01:00
mxf.h mxf: Introduce ff_mxf_get_samples_per_frame 2014-03-06 19:28:20 +01:00
mxfdec.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
mxfenc.c
mxg.c
ncdec.c
network.c
network.h network.h: Add #endif comments to improve readability 2014-01-06 21:16:54 +01:00
noproxy-test.c
nsvdec.c
nullenc.c
nut.c nut: Fix unchecked allocations 2013-10-22 17:09:56 +01:00
nut.h nut: Fix unchecked allocations 2013-10-22 17:09:56 +01:00
nutdec.c nut: Fix unchecked allocations 2013-10-22 17:09:56 +01:00
nutenc.c Add missing #includes for *INT64_MAX and *INT64_C 2013-11-23 21:55:52 +01:00
nuv.c
oggdec.c oggdec: add support for Opus in Ogg demuxing 2013-10-12 15:25:18 +02:00
oggdec.h oggdec: add support for Opus in Ogg demuxing 2013-10-12 15:25:18 +02:00
oggenc.c lavf: default .ogg audio to libvorbis if we can 2014-02-09 18:36:15 +01:00
oggparsecelt.c
oggparsedirac.c
oggparseflac.c
oggparseogm.c oggparseogm: check timing variables 2014-01-06 08:21:38 +01:00
oggparseopus.c oggdec: add support for Opus in Ogg demuxing 2013-10-12 15:25:18 +02:00
oggparseskeleton.c
oggparsespeex.c
oggparsetheora.c oggparsetheora: stop using deprecated avcodec_set_dimensions 2013-10-31 20:14:14 +01:00
oggparsevorbis.c oggparsevorbis: fail on memory allocation error 2013-10-12 15:37:56 +02:00
oma.c Add support for multichannel ATRAC3+ streams. 2013-09-29 21:52:57 +02:00
oma.h Add support for multichannel ATRAC3+ streams. 2013-09-29 21:52:57 +02:00
omadec.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
omaenc.c
options.c lavf: ignore attachment streams for interleaving purposes 2014-02-04 11:17:06 +01:00
options_table.h lavf: improve handling of sparse streams when muxing 2014-02-04 22:01:42 +01:00
os_support.c os_support: Add #endif comments for better readability 2013-11-02 13:57:03 +01:00
os_support.h
pcm.c
pcm.h
pcmdec.c pcmdec: replace a reachable assert with an error check 2014-02-10 07:41:21 +01:00
pcmenc.c
pmpdec.c pmpdec: check that there is at least one audio packet. 2014-01-03 16:40:22 +01:00
psxstr.c
pva.c
qcp.c
qtpalette.h
r3d.c
rawdec.c
rawdec.h
rawenc.c Add raw HEVC muxer 2014-02-09 14:15:44 +00:00
rawenc.h
rawvideodec.c
rdt.c lavf: do not export av_register_{rtp,rdt}_dynamic_payload_handlers from shared objects 2013-10-28 15:29:49 +01:00
rdt.h lavf: do not export av_register_{rtp,rdt}_dynamic_payload_handlers from shared objects 2013-10-28 15:29:49 +01:00
riff.c riff: add VP9 fourcc 2014-03-09 18:09:39 +01:00
riff.h
riffdec.c riffdec: Add sanity checks for the sample rate 2013-09-29 19:58:18 +03:00
riffenc.c
rl2.c Add missing #includes for *INT64_MAX and *INT64_C 2013-11-23 21:55:52 +01:00
rm.c
rm.h
rmdec.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
rmenc.c
rmsipr.c
rmsipr.h
rpl.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
rso.c
rso.h
rsodec.c
rsoenc.c
rtmp.h
rtmpcrypt.c
rtmpcrypt.h
rtmpdh.c
rtmpdh.h
rtmphttp.c rtmphttp: Check for both 0 and AVERROR_EOF 2013-11-18 12:36:32 +02:00
rtmppkt.c rtmppkt: Rename the ts_delta field to ts_field 2014-03-07 10:43:51 +02:00
rtmppkt.h rtmppkt: Rename the ts_delta field to ts_field 2014-03-07 10:43:51 +02:00
rtmpproto.c rtmpproto: Avoid using uninitialized memory 2014-01-20 21:56:57 +02:00
rtp.c
rtp.h
rtpdec.c lavf: do not export av_register_{rtp,rdt}_dynamic_payload_handlers from shared objects 2013-10-28 15:29:49 +01:00
rtpdec.h lavf: do not export av_register_{rtp,rdt}_dynamic_payload_handlers from shared objects 2013-10-28 15:29:49 +01:00
rtpdec_amr.c
rtpdec_asf.c rtpdec_asf: Copy the need_parsing field from the chained demuxer 2014-01-23 17:37:10 +02:00
rtpdec_formats.h
rtpdec_g726.c
rtpdec_h263.c
rtpdec_h263_rfc2190.c
rtpdec_h264.c rtpdec_h264: Check the return value of functions doing allocations 2013-12-14 17:48:46 +02:00
rtpdec_ilbc.c
rtpdec_jpeg.c
rtpdec_latm.c
rtpdec_mpeg4.c
rtpdec_mpeg12.c
rtpdec_mpegts.c
rtpdec_qcelp.c
rtpdec_qdm2.c
rtpdec_qt.c lavf: Reset the entry count and allocation size variables on av_reallocp failures 2013-09-26 23:14:03 +03:00
rtpdec_svq3.c
rtpdec_vp8.c
rtpdec_xiph.c
rtpenc.c rtpenc: Add a rtpflag option for sending BYE packets when finishing 2013-11-01 09:57:02 +02:00
rtpenc.h rtpenc: Add a rtpflag option for sending BYE packets when finishing 2013-11-01 09:57:02 +02:00
rtpenc_aac.c
rtpenc_amr.c
rtpenc_chain.c
rtpenc_chain.h
rtpenc_h263.c
rtpenc_h263_rfc2190.c
rtpenc_h264.c
rtpenc_jpeg.c
rtpenc_latm.c
rtpenc_mpv.c
rtpenc_vp8.c
rtpenc_xiph.c
rtpproto.c
rtpproto.h
rtsp.c rtsp: suppress a incompatible pointer types warning 2013-12-12 16:10:14 +01:00
rtsp.h rtspenc: Make sure BYE packets are sent before TEARDOWN 2013-11-01 09:57:06 +02:00
rtspcodes.h
rtspdec.c rtspdec: Fix keep-alive request for ACTi cameras 2013-12-11 22:48:55 +02:00
rtspenc.c rtspenc: Make sure BYE packets are sent before TEARDOWN 2013-11-01 09:57:06 +02:00
sapdec.c
sapenc.c
sauce.c
sauce.h
sctp.c
sdp.c sdp: Check that fmt->oformat is non-null before accessing it 2014-01-05 01:33:46 +02:00
seek-test.c
seek.c Add missing #includes for *INT64_MAX and *INT64_C 2013-11-23 21:55:52 +01:00
seek.h lavf: remove unreliable timestamp guessing heuristic 2013-10-28 09:28:19 +01:00
segafilm.c segafilm: fix leaks if reading the header fails 2014-01-06 08:26:09 +01:00
segment.c
sierravmd.c
siff.c
smacker.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
smjpeg.c
smjpeg.h
smjpegdec.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
smjpegenc.c
smoothstreamingenc.c lavf: Reset the entry count and allocation size variables on av_reallocp failures 2013-09-26 23:14:03 +03:00
sol.c
sox.h
soxdec.c
soxenc.c
spdif.c
spdif.h
spdifdec.c
spdifenc.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
srtdec.c
srtp.c
srtp.h
srtpproto.c
swf.c
swf.h
swfdec.c
swfenc.c
takdec.c
tcp.c
thp.c
tiertexseq.c
tls.c tls: Add support for listen mode 2013-09-26 23:13:35 +03:00
tmv.c
tta.c
tty.c
txd.c
udp.c
unix.c
url-test.c
url.c
url.h lavf: Remove a now useless parameter to ffurl_register_protocol 2013-10-30 09:53:48 +02:00
urldecode.c
urldecode.h
utils.c avformat: Report the duration analysis reached 2014-03-11 21:55:11 +01:00
vc1test.c
vc1testenc.c
version.h Add raw HEVC muxer 2014-02-09 14:15:44 +00:00
voc.c
voc.h
vocdec.c
vocenc.c
vorbiscomment.c
vorbiscomment.h
vqf.c vqf: Make sure the bitrate is in the valid range 2013-09-29 18:46:39 +03:00
wavdec.c Add missing #includes for *INT64_MAX and *INT64_C 2013-11-23 21:55:52 +01:00
wavenc.c
wc3movie.c
westwood_aud.c
westwood_vqa.c
wtv.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
wv.c
wv.h
wvdec.c
wvenc.c
xa.c
xmv.c lavf: more correct printf format specifiers 2014-03-11 13:13:41 +01:00
xwma.c Add missing #includes for *INT64_MAX and *INT64_C 2013-11-23 21:55:52 +01:00
yop.c
yuv4mpeg.c yuv4mpeg: set average frame rate 2014-01-17 10:30:45 +01:00