diff options
author | Aman Gupta <[email protected]> | 2018-05-15 11:47:30 -0700 |
---|---|---|
committer | Aman Gupta <[email protected]> | 2018-05-18 19:16:35 -0700 |
commit | 8336a6627045291470b54b7058ec54bd45772d29 (patch) | |
tree | e6bcd514ab3e7c20f4aa1401638800cb4152a7e2 /libavformat/mpegts.c | |
parent | d1845e7f1a3960bfbaf06c9b280121e8499204f8 (diff) |
avformat/mpegts: fix incorrect indentation
Signed-off-by: Aman Gupta <[email protected]>
(cherry picked from commit 64bf915cd851ab604cb87cd463725fd1c6460a1c)
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 8fff8d4934..9a553554db 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -1745,10 +1745,10 @@ int ff_parse_mpeg2_descriptor(AVFormatContext *fc, AVStream *st, int stream_type } } - if (st->codecpar->extradata_size < language_count * 2) - return AVERROR_INVALIDDATA; + if (st->codecpar->extradata_size < language_count * 2) + return AVERROR_INVALIDDATA; - extradata = st->codecpar->extradata; + extradata = st->codecpar->extradata; for (i = 0; i < language_count; i++) { language[i * 4 + 0] = get8(pp, desc_end); |