summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-10 13:28:00 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-10 13:28:00 +0000
commita6bf35473f0b61baa245d5842cbb74a6fdf130ce (patch)
tree217724ebd436d5932be9dbf4cb4176b17b3b62a8 /loader
parentc85832df25c2f936df343771f4157d2d37e36fd1 (diff)
downloadmpv-a6bf35473f0b61baa245d5842cbb74a6fdf130ce.tar.bz2
mpv-a6bf35473f0b61baa245d5842cbb74a6fdf130ce.tar.xz
warning fixes:
dmo/DMO_VideoDecoder.c: In function 'DMO_VideoDecoder_DecodeInternal': dmo/DMO_VideoDecoder.c:299: warning: unused variable 'ptr' dmo/DMO_VideoDecoder.c: In function 'DMO_VideoDecoder_SetDestFmt': dmo/DMO_VideoDecoder.c:366: warning: unused variable 'stoped' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24412 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader')
-rw-r--r--loader/dmo/DMO_VideoDecoder.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/loader/dmo/DMO_VideoDecoder.c b/loader/dmo/DMO_VideoDecoder.c
index 6771bc126d..89017453eb 100644
--- a/loader/dmo/DMO_VideoDecoder.c
+++ b/loader/dmo/DMO_VideoDecoder.c
@@ -296,7 +296,6 @@ void DMO_VideoDecoder_StopInternal(DMO_VideoDecoder *this)
int DMO_VideoDecoder_DecodeInternal(DMO_VideoDecoder *this, const void* src, int size, int is_keyframe, char* imdata)
{
// IMediaSample* sample = 0;
- char* ptr;
int result;
unsigned long status; // to be ignored by M$ specs
DMO_OUTPUT_DATA_BUFFER db;
@@ -363,7 +362,6 @@ int DMO_VideoDecoder_SetDestFmt(DMO_VideoDecoder *this, int bits, unsigned int c
{
HRESULT result;
int should_test=1;
- int stoped = 0;
Debug printf("DMO_VideoDecoder_SetDestFmt (%p, %d, %d)\n",this,bits,(int)csp);