1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-28 10:02:17 +00:00

Remove useless casts.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30563 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2010-02-14 11:09:24 +00:00
parent 24dadf50a3
commit fdb18951f1

View File

@ -131,7 +131,7 @@ static int init(sh_video_t *sh){
*/
static void uninit(sh_video_t *sh)
{
theora_struct_t *context = (theora_struct_t *)sh->context;
theora_struct_t *context = sh->context;
if (context)
{
@ -147,7 +147,7 @@ static void uninit(sh_video_t *sh)
*/
static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags)
{
theora_struct_t *context = (theora_struct_t *)sh->context;
theora_struct_t *context = sh->context;
int errorCode = 0;
ogg_packet op;
yuv_buffer yuv;