Commit b4e29e62 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

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'
parent ef23ed6f
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment