diff options
author | Clément Bœsch <u@pkh.me> | 2015-01-01 22:09:21 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2015-01-01 22:09:21 +0100 |
commit | 6a29499b95bb1e7ab11bc9dfcac22da5825bbc0f (patch) | |
tree | 82587988237dbfd85bd4f3a02df5c591ba70d68c /libavformat/flvdec.c | |
parent | 8009a51f7bbd90e2a8806be2d8f49f0684037bdb (diff) | |
download | ffmpeg-6a29499b95bb1e7ab11bc9dfcac22da5825bbc0f.tar.gz |
avformat/flvdec: remove duplicated line error
Fix typo regression since 5c37ffca59e7eb1b8768f237deb35a9936c1a0a5
Found-By: cousin_luigi
Diffstat (limited to 'libavformat/flvdec.c')
-rw-r--r-- | libavformat/flvdec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index c13c0e48a1..572268f2ad 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -441,7 +441,6 @@ static int amf_parse_object(AVFormatContext *s, AVStream *astream, if (amf_parse_object(s, astream, vstream, str_val, max_pos, depth + 1) < 0) return -1; - if (avio_r8(ioc) != AMF_END_OF_OBJECT) if (avio_r8(ioc) != AMF_END_OF_OBJECT) { av_log(s, AV_LOG_ERROR, "Missing AMF_END_OF_OBJECT in AMF_DATA_TYPE_MIXEDARRAY\n"); return -1; |