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

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorv0lt <v0lt@rambler.ru>2013-05-14 17:46:53 +0400
committerv0lt <v0lt@rambler.ru>2013-05-14 17:46:53 +0400
commit030f3d64744f229bceb0201ddb7b999ecc862244 (patch)
tree57176e4e4aa0f581a9d833c7660b7b60f6ff745e /src
parent436f537dc0b9b66310fcedcca2ba74e4e22f2be5 (diff)
MatroskaSplitter: small fix for 436f537dc0.
Diffstat (limited to 'src')
-rw-r--r--src/filters/parser/MatroskaSplitter/MatroskaSplitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filters/parser/MatroskaSplitter/MatroskaSplitter.cpp b/src/filters/parser/MatroskaSplitter/MatroskaSplitter.cpp
index 70a81e82c..a08af6337 100644
--- a/src/filters/parser/MatroskaSplitter/MatroskaSplitter.cpp
+++ b/src/filters/parser/MatroskaSplitter/MatroskaSplitter.cpp
@@ -503,7 +503,7 @@ avcsuccess:
} else if (tc == timecode2) { // hmm
continue;
} else if (tc > timecode2) { // I and P frames
- if (framecount >= 24) {
+ if (framecount > 24) {
// good for 23.976, 24, 25, 30, 50, 60 fps.
// for 29.97 and 59,94 can give a small inaccuracy
readmore = false;