Browse Source

lavf/srtdec: remove line break hack.

This is not necessary anymore since the last commit.
tags/n1.1
Clément Bœsch 12 years ago
parent
commit
3af3a3006f
1 changed files with 0 additions and 6 deletions
  1. +0
    -6
      libavformat/srtdec.c

+ 0
- 6
libavformat/srtdec.c View File

@@ -115,12 +115,6 @@ static void read_chunk(AVIOContext *pb, AVBPrint *buf)
av_bprint_chars(buf, c, 1);
n++;
}

/* FIXME: remove the following when the lavc SubRip decoder is fixed
* (trailing tags are not correctly flushed, see what happens to FATE when
* you disable this code) */
if (buf->len)
av_bprintf(buf, "\n");
}

static int srt_read_header(AVFormatContext *s)


Loading…
Cancel
Save