mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-12 02:19:35 +00:00
xmv: eliminate superfluous zeroing of zero data
Signed-off-by: Diego Biurrun <diego@biurrun.de>
This commit is contained in:
parent
d2ba1fb50c
commit
5f677aac76
@ -235,17 +235,8 @@ static int xmv_read_header(AVFormatContext *s,
|
||||
/** Initialize the packet context */
|
||||
|
||||
xmv->next_packet_offset = avio_tell(pb);
|
||||
|
||||
xmv->next_packet_size = this_packet_size - xmv->next_packet_offset;
|
||||
xmv->this_packet_size = 0;
|
||||
|
||||
xmv->video.current_frame = 0;
|
||||
xmv->video.frame_count = 0;
|
||||
xmv->video.pts = 0;
|
||||
xmv->video.last_pts = 0;
|
||||
|
||||
xmv->current_stream = 0;
|
||||
xmv->stream_count = xmv->audio_track_count + 1;
|
||||
xmv->next_packet_size = this_packet_size - xmv->next_packet_offset;
|
||||
xmv->stream_count = xmv->audio_track_count + 1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user