MDL-29624 Media embedding system : phpdoc tweaks.

This commit is contained in:
Aparup Banerjee 2012-05-10 10:51:15 +08:00
parent e1e3fa217f
commit 83c9d449e0
3 changed files with 8 additions and 16 deletions

View file

@ -35,26 +35,18 @@
defined('MOODLE_INTERNAL') || die();
if (!defined('CORE_MEDIA_VIDEO_WIDTH')) {
/**
* Default video width if no width is specified; some players may do something
* more intelligent such as use real video width.
*
* May be defined in config.php if required.
*/
// Default video width if no width is specified; some players may do something
// more intelligent such as use real video width.
// May be defined in config.php if required.
define('CORE_MEDIA_VIDEO_WIDTH', 400);
}
if (!defined('CORE_MEDIA_VIDEO_HEIGHT')) {
/**
* Default video height. May be defined in config.php if required.
*/
// Default video height. May be defined in config.php if required.
define('CORE_MEDIA_VIDEO_HEIGHT', 300);
}
if (!defined('CORE_MEDIA_AUDIO_WIDTH')) {
/**
* Default audio width if no width is specified.
*
* May be defined in config.php if required.
*/
// Default audio width if no width is specified.
// May be defined in config.php if required.
define('CORE_MEDIA_AUDIO_WIDTH', 300);
}