mirror of
https://github.com/php/php-src.git
synced 2025-08-21 01:45:16 +02:00
Make it possible to return VideoStream and PrebuiltClip
This commit is contained in:
parent
a85bff9796
commit
aa25757136
1 changed files with 4 additions and 0 deletions
|
@ -238,6 +238,10 @@ static SWFCharacter getCharacter(zval *id TSRMLS_DC)
|
|||
return (SWFCharacter)getBitmap(id TSRMLS_CC);
|
||||
else if(Z_OBJCE_P(id) == sound_class_entry_ptr)
|
||||
return (SWFCharacter)getSound(id TSRMLS_CC);
|
||||
else if(Z_OBJCE_P(id) == videostream_class_entry_ptr)
|
||||
return (SWFCharacter)getVideoStream(id TSRMLS_CC);
|
||||
else if(Z_OBJCE_P(id) == prebuiltclip_class_entry_ptr)
|
||||
return (SWFCharacter)getPrebuiltClip(id TSRMLS_CC);
|
||||
/*
|
||||
else if(Z_OBJCE_P(id) == soundinstance_class_entry_ptr)
|
||||
return (SWFCharacter)getSoundInstance(id TSRMLS_CC);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue