[vlc-commits] dash: Prevent infinite recursion.
Hugo Beauzée-Luyssen
git at videolan.org
Thu May 24 11:39:40 CEST 2012
vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Fri May 11 11:53:11 2012 +0200| [b42d423a31581ac68ae1f91bd970c823387da1cd] | committer: Hugo Beauzée-Luyssen
dash: Prevent infinite recursion.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b42d423a31581ac68ae1f91bd970c823387da1cd
---
modules/stream_filter/dash/mpd/IsoffMainManager.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/stream_filter/dash/mpd/IsoffMainManager.cpp b/modules/stream_filter/dash/mpd/IsoffMainManager.cpp
index f870d7e..4b3e3c9 100644
--- a/modules/stream_filter/dash/mpd/IsoffMainManager.cpp
+++ b/modules/stream_filter/dash/mpd/IsoffMainManager.cpp
@@ -155,7 +155,7 @@ Representation* IsoffMainManager::getRepresentation (Period *per
}
if(resMatchReps.size() == 0)
- return this->getRepresentation(period, bitrate, lowerWidth, lowerHeight);
+ return this->getRepresentation(period, bitrate);
Representation *best = NULL;
for( size_t j = 0; j < resMatchReps.size(); j++ )
More information about the vlc-commits
mailing list