mirror of
https://github.com/mpv-player/mpv
synced 2025-04-01 23:00:41 +00:00
Fix a couple of unused variable warnings through the av_unused attribute.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28476 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
2817da6233
commit
19e71dbc54
@ -41,6 +41,7 @@
|
|||||||
#include "stheader.h"
|
#include "stheader.h"
|
||||||
|
|
||||||
#include "libmpcodecs/img_format.h"
|
#include "libmpcodecs/img_format.h"
|
||||||
|
#include "libavutil/common.h"
|
||||||
#include "libavutil/intreadwrite.h"
|
#include "libavutil/intreadwrite.h"
|
||||||
|
|
||||||
#include "libvo/sub.h"
|
#include "libvo/sub.h"
|
||||||
@ -434,8 +435,8 @@ static int mov_check_file(demuxer_t* demuxer){
|
|||||||
case MOV_FOURCC('r','m','d','a'):
|
case MOV_FOURCC('r','m','d','a'):
|
||||||
continue;
|
continue;
|
||||||
case MOV_FOURCC('r','d','r','f'): {
|
case MOV_FOURCC('r','d','r','f'): {
|
||||||
int tmp=stream_read_dword(demuxer->stream);
|
av_unused int tmp=stream_read_dword(demuxer->stream);
|
||||||
int type=stream_read_dword_le(demuxer->stream);
|
av_unused int type=stream_read_dword_le(demuxer->stream);
|
||||||
int slen=stream_read_dword(demuxer->stream);
|
int slen=stream_read_dword(demuxer->stream);
|
||||||
//char* s=malloc(slen+1);
|
//char* s=malloc(slen+1);
|
||||||
//stream_read(demuxer->stream,s,slen);
|
//stream_read(demuxer->stream,s,slen);
|
||||||
@ -455,7 +456,7 @@ static int mov_check_file(demuxer_t* demuxer){
|
|||||||
len-=12+slen;i-=12+slen; break;
|
len-=12+slen;i-=12+slen; break;
|
||||||
}
|
}
|
||||||
case MOV_FOURCC('r','m','d','r'): {
|
case MOV_FOURCC('r','m','d','r'): {
|
||||||
int flags=stream_read_dword(demuxer->stream);
|
av_unused int flags=stream_read_dword(demuxer->stream);
|
||||||
int rate=stream_read_dword(demuxer->stream);
|
int rate=stream_read_dword(demuxer->stream);
|
||||||
mp_msg(MSGT_DEMUX,MSGL_V," min. data rate: %d bits/sec\n",rate);
|
mp_msg(MSGT_DEMUX,MSGL_V," min. data rate: %d bits/sec\n",rate);
|
||||||
len-=8; i-=8; break;
|
len-=8; i-=8; break;
|
||||||
@ -1658,12 +1659,12 @@ static int lschunks_intrak(demuxer_t* demuxer, int level, unsigned int id,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case MOV_FOURCC('h','d','l','r'): {
|
case MOV_FOURCC('h','d','l','r'): {
|
||||||
unsigned int tmp = stream_read_dword(demuxer->stream);
|
av_unused unsigned int tmp = stream_read_dword(demuxer->stream);
|
||||||
unsigned int type = stream_read_dword_le(demuxer->stream);
|
unsigned int type = stream_read_dword_le(demuxer->stream);
|
||||||
unsigned int subtype = stream_read_dword_le(demuxer->stream);
|
unsigned int subtype = stream_read_dword_le(demuxer->stream);
|
||||||
unsigned int manufact = stream_read_dword_le(demuxer->stream);
|
unsigned int manufact = stream_read_dword_le(demuxer->stream);
|
||||||
unsigned int comp_flags = stream_read_dword(demuxer->stream);
|
av_unused unsigned int comp_flags = stream_read_dword(demuxer->stream);
|
||||||
unsigned int comp_mask = stream_read_dword(demuxer->stream);
|
av_unused unsigned int comp_mask = stream_read_dword(demuxer->stream);
|
||||||
int len = stream_read_char(demuxer->stream);
|
int len = stream_read_char(demuxer->stream);
|
||||||
char* str = malloc(len + 1);
|
char* str = malloc(len + 1);
|
||||||
stream_read(demuxer->stream, str, len);
|
stream_read(demuxer->stream, str, len);
|
||||||
@ -1743,7 +1744,7 @@ static int lschunks_intrak(demuxer_t* demuxer, int level, unsigned int id,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case MOV_FOURCC('s','t','t','s'): {
|
case MOV_FOURCC('s','t','t','s'): {
|
||||||
int temp = stream_read_dword(demuxer->stream);
|
av_unused int temp = stream_read_dword(demuxer->stream);
|
||||||
int len = stream_read_dword(demuxer->stream);
|
int len = stream_read_dword(demuxer->stream);
|
||||||
int i;
|
int i;
|
||||||
unsigned int pts = 0;
|
unsigned int pts = 0;
|
||||||
@ -1802,7 +1803,7 @@ static int lschunks_intrak(demuxer_t* demuxer, int level, unsigned int id,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case MOV_FOURCC('s','t','c','o'): {
|
case MOV_FOURCC('s','t','c','o'): {
|
||||||
int temp = stream_read_dword(demuxer->stream);
|
av_unused int temp = stream_read_dword(demuxer->stream);
|
||||||
int len = stream_read_dword(demuxer->stream);
|
int len = stream_read_dword(demuxer->stream);
|
||||||
int i;
|
int i;
|
||||||
mp_msg(MSGT_DEMUX, MSGL_V,
|
mp_msg(MSGT_DEMUX, MSGL_V,
|
||||||
@ -1819,7 +1820,7 @@ static int lschunks_intrak(demuxer_t* demuxer, int level, unsigned int id,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case MOV_FOURCC('c','o','6','4'): {
|
case MOV_FOURCC('c','o','6','4'): {
|
||||||
int temp = stream_read_dword(demuxer->stream);
|
av_unused int temp = stream_read_dword(demuxer->stream);
|
||||||
int len = stream_read_dword(demuxer->stream);
|
int len = stream_read_dword(demuxer->stream);
|
||||||
int i;
|
int i;
|
||||||
mp_msg(MSGT_DEMUX, MSGL_V,
|
mp_msg(MSGT_DEMUX, MSGL_V,
|
||||||
@ -2191,7 +2192,7 @@ if(trak->pos==0 && trak->stream_header_len>0){
|
|||||||
if (samplenr < 0)
|
if (samplenr < 0)
|
||||||
vo_sub = NULL;
|
vo_sub = NULL;
|
||||||
else if (samplenr != priv->current_sub) {
|
else if (samplenr != priv->current_sub) {
|
||||||
sh_sub_t *sh = demuxer->sub->sh;
|
av_unused sh_sub_t *sh = demuxer->sub->sh;
|
||||||
off_t pos = trak->samples[samplenr].pos;
|
off_t pos = trak->samples[samplenr].pos;
|
||||||
int len = trak->samples[samplenr].size;
|
int len = trak->samples[samplenr].size;
|
||||||
double subpts = (double)trak->samples[samplenr].pts / (double)trak->timescale;
|
double subpts = (double)trak->samples[samplenr].pts / (double)trak->timescale;
|
||||||
|
Loading…
Reference in New Issue
Block a user