[Dsmyth-checkins] SF.net SVN: dsmyth: [552] trunk/MythTVReader/Shell/PropertyHandler/ MythTVPropert
Brought to you by:
tobbej
|
From: <to...@us...> - 2007-07-16 10:08:01
|
Revision: 552
http://svn.sourceforge.net/dsmyth/?rev=552&view=rev
Author: tobbej
Date: 2007-07-16 03:05:21 -0700 (Mon, 16 Jul 2007)
Log Message:
-----------
encoding bitrate is ULONG and not BOOL
Modified Paths:
--------------
trunk/MythTVReader/Shell/PropertyHandler/MythTVProperties.cpp
Modified: trunk/MythTVReader/Shell/PropertyHandler/MythTVProperties.cpp
===================================================================
--- trunk/MythTVReader/Shell/PropertyHandler/MythTVProperties.cpp 2007-07-15 13:33:20 UTC (rev 551)
+++ trunk/MythTVReader/Shell/PropertyHandler/MythTVProperties.cpp 2007-07-16 10:05:21 UTC (rev 552)
@@ -306,7 +306,7 @@
StoreDataInCache(PKEY_Audio_Compression,L"PCM");
}
- StoreDataInCache(PKEY_Video_EncodingBitrate,info.m_ExtendedData.lavc_bitrate);
+ StoreDataInCache(PKEY_Video_EncodingBitrate,(ULONG)info.m_ExtendedData.lavc_bitrate);
StoreDataInCache(PKEY_Video_FourCC,(ULONG)info.m_ExtendedData.video_fourcc);
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|