Commit cb5bb521 authored by Clément Bœsch's avatar Clément Bœsch

lavf/movenc: use two explicit bytes instead of a short.

This also avoids a pointless cast.

Idea-by: Reimar Döffinger
parent e6dd2852
...@@ -3145,12 +3145,12 @@ static int mov_write_subtitle_end_packet(AVFormatContext *s, ...@@ -3145,12 +3145,12 @@ static int mov_write_subtitle_end_packet(AVFormatContext *s,
int stream_index, int stream_index,
int64_t dts) { int64_t dts) {
AVPacket end; AVPacket end;
short data = 0; uint8_t data[2] = {0};
int ret; int ret;
av_init_packet(&end); av_init_packet(&end);
end.size = sizeof (short); end.size = sizeof(data);
end.data = (char *)&data; end.data = data;
end.pts = dts; end.pts = dts;
end.dts = dts; end.dts = dts;
end.duration = 0; end.duration = 0;
......
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