diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-11-26 18:35:26 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-11-28 10:01:50 +0100 |
commit | c88ebdb42c0a4e4c3d78c705752f06fe78af27f6 (patch) | |
tree | 2699a272b193386456170a685e06192e9e754a4d /libavformat/mpeg.c | |
parent | 1469f943adb06b85ac7e22fd3e8121c2308b0830 (diff) | |
download | ffmpeg-c88ebdb42c0a4e4c3d78c705752f06fe78af27f6.tar.gz |
Eliminate pointless 0/NULL initializers in AVCodec and similar declarations.
Diffstat (limited to 'libavformat/mpeg.c')
-rw-r--r-- | libavformat/mpeg.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index 982903829f..f740a25f89 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -614,7 +614,6 @@ AVInputFormat ff_mpegps_demuxer = { .read_probe = mpegps_probe, .read_header = mpegps_read_header, .read_packet = mpegps_read_packet, - .read_seek = NULL, //mpegps_read_seek, .read_timestamp = mpegps_read_dts, .flags = AVFMT_SHOW_IDS|AVFMT_TS_DISCONT, }; |