mirror of https://git.ffmpeg.org/ffmpeg.git
lavf/mxfenc: Remove two unused variables.
Fixes the following warnings: libavformat/mxfenc.c:2036:9: warning: unused variable 'i' libavformat/mxfenc.c:2125:9: warning: unused variable 'i'
This commit is contained in:
parent
ef23ed6fe9
commit
b4e29e6225
|
@ -2033,7 +2033,7 @@ AVPacket *pkt)
|
|||
{
|
||||
MXFContext *mxf = s->priv_data;
|
||||
MXFStreamContext *sc = st->priv_data;
|
||||
int i, cid;
|
||||
int cid;
|
||||
uint8_t* header_cid;
|
||||
int frame_size = 0;
|
||||
|
||||
|
@ -2122,7 +2122,7 @@ static int mxf_parse_dv_frame(AVFormatContext *s, AVStream *st, AVPacket *pkt)
|
|||
MXFContext *mxf = s->priv_data;
|
||||
MXFStreamContext *sc = st->priv_data;
|
||||
uint8_t *vs_pack, *vsc_pack;
|
||||
int i, ul_index, frame_size, stype, pal;
|
||||
int ul_index, frame_size, stype, pal;
|
||||
const AVDVProfile *profile;
|
||||
|
||||
if (mxf->header_written)
|
||||
|
|
Loading…
Reference in New Issue