Commit 59453725 authored by Baptiste Coudurier's avatar Baptiste Coudurier

remove useless return

Originally committed as revision 17050 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 425c9962
...@@ -852,18 +852,18 @@ static unsigned klv_fill_size(uint64_t size) ...@@ -852,18 +852,18 @@ static unsigned klv_fill_size(uint64_t size)
return pad & (KAG_SIZE-1); return pad & (KAG_SIZE-1);
} }
static int mxf_write_index_table_segment(AVFormatContext *s) static void mxf_write_index_table_segment(AVFormatContext *s)
{ {
MXFContext *mxf = s->priv_data; MXFContext *mxf = s->priv_data;
ByteIOContext *pb = s->pb; ByteIOContext *pb = s->pb;
int i, j, ret; int i, j;
int temporal_reordering = 0; int temporal_reordering = 0;
int last_key_index = 0, key_index = 0; int last_key_index = 0, key_index = 0;
av_log(s, AV_LOG_DEBUG, "edit units count %d\n", mxf->edit_units_count); av_log(s, AV_LOG_DEBUG, "edit units count %d\n", mxf->edit_units_count);
put_buffer(pb, index_table_segment_key, 16); put_buffer(pb, index_table_segment_key, 16);
ret = klv_encode_ber_length(pb, 109 + (s->nb_streams+1)*6 + klv_encode_ber_length(pb, 109 + (s->nb_streams+1)*6 +
mxf->edit_units_count*(11+mxf->slice_count*4)); mxf->edit_units_count*(11+mxf->slice_count*4));
// instance id // instance id
...@@ -965,8 +965,6 @@ static int mxf_write_index_table_segment(AVFormatContext *s) ...@@ -965,8 +965,6 @@ static int mxf_write_index_table_segment(AVFormatContext *s)
if (s->nb_streams > 1) if (s->nb_streams > 1)
put_be32(pb, mxf->index_entries[i].slice_offset); put_be32(pb, mxf->index_entries[i].slice_offset);
} }
return ret;
} }
static void mxf_write_partition(AVFormatContext *s, int bodysid, static void mxf_write_partition(AVFormatContext *s, int bodysid,
......
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