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

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2013-01-08 02:16:05 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2013-01-08 02:16:46 +0400
commit525c9ed49b313a9cd7a14c75d9bcf6809f2e685f (patch)
treeec58f7460d3e01b8807b93008c5067e9baabb413
parentef56e77ef820a80801bc4c276471ed27bea773c8 (diff)
Log number of DVD Palette entries
-rw-r--r--decoder/LAVVideo/subtitles/LAVSubtitleProvider.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/LAVVideo/subtitles/LAVSubtitleProvider.cpp b/decoder/LAVVideo/subtitles/LAVSubtitleProvider.cpp
index 46195de1..fee926fe 100644
--- a/decoder/LAVVideo/subtitles/LAVSubtitleProvider.cpp
+++ b/decoder/LAVVideo/subtitles/LAVSubtitleProvider.cpp
@@ -304,7 +304,7 @@ STDMETHODIMP CLAVSubtitleProvider::Decode(BYTE *buf, int buflen, REFERENCE_TIME
}
rtSubStart += sub.start_display_time * 10000i64;
}
- DbgLog((LOG_TRACE, 10, L"Decoded Sub: rtStart: %I64d, rtStop: %I64d, num_rects: %u", rtSubStart, rtSubStop, sub.num_rects));
+ DbgLog((LOG_TRACE, 10, L"Decoded Sub: rtStart: %I64d, rtStop: %I64d, num_rects: %u, num_dvd_palette: %d", rtSubStart, rtSubStop, sub.num_rects, sub.num_dvd_palette));
ProcessSubtitleFrame(&sub, rtSubStart, rtSubStop);
}