diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-15 21:31:59 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-15 22:47:45 +0200 |
commit | 81a663f49edd265dc846ff3854579415cac1d5bb (patch) | |
tree | 316eba8de3800371865b42b36831e9829bf775f7 /libavformat/matroskadec.c | |
parent | 60dbed6067676d847157fe530b1caed06c77e2ab (diff) | |
download | ffmpeg-81a663f49edd265dc846ff3854579415cac1d5bb.tar.gz |
Drop remaining unneeded != NULL
Reviewed-by: Clément Bœsch <u@pkh.me>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/matroskadec.c')
-rw-r--r-- | libavformat/matroskadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index dd1478cbf4..09d23f67ed 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -1772,7 +1772,7 @@ static int matroska_parse_tracks(AVFormatContext *s) extradata_offset = FFMIN(track->codec_priv.size, 18); } else if (!strcmp(track->codec_id, "A_QUICKTIME") && (track->codec_priv.size >= 86) - && (track->codec_priv.data != NULL)) { + && (track->codec_priv.data)) { fourcc = AV_RL32(track->codec_priv.data + 4); codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc); if (ff_codec_get_id(ff_codec_movaudio_tags, AV_RL32(track->codec_priv.data))) { |