Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2014-09-29 18:50:35 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2014-09-29 18:50:35 +0400
commitcdd11108d9b67a0c3251f12d14f6eb18c7fe8f5a (patch)
tree3d39f63a90747fc1984c66f98c7f3c95a9b6cbd9
parent937919d7595c2b690f8d6d6c48e022c23736149c (diff)
matroskadec_haali: fix ass style on segmented mkvsmpc-hc-1.7.6-6lav0.63
-rw-r--r--libavformat/matroskadec_haali.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/matroskadec_haali.c b/libavformat/matroskadec_haali.c
index 6768c4a760..0b4c783bfd 100644
--- a/libavformat/matroskadec_haali.c
+++ b/libavformat/matroskadec_haali.c
@@ -1197,7 +1197,7 @@ static int mkv_read_header(AVFormatContext *s)
}
} else if (info->Type == TT_SUB) {
st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
- if (st->codec->codec_id == AV_CODEC_ID_SSA) {
+ if (st->codec->codec_id == AV_CODEC_ID_ASS) {
/* HACK: Try to get the privdata of the main segments SSA track, otherwise DirectShow renderers fail */
unsigned num = mkv_GetNumTracks(ctx->segments[0]->matroska);
if (num > i) {