1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

removes spurious warning

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Joseph Wecker
2011-11-10 14:57:02 -08:00
committed by Michael Niedermayer
parent c40a35f8a7
commit d31c68a7ed

View File

@@ -432,7 +432,7 @@ static int flv_write_packet(AVFormatContext *s, AVPacket *pkt)
assert(enc->codec_type == AVMEDIA_TYPE_DATA); assert(enc->codec_type == AVMEDIA_TYPE_DATA);
avio_w8(pb, FLV_TAG_TYPE_META); avio_w8(pb, FLV_TAG_TYPE_META);
flags_size = 0; flags_size = 0;
flags = NULL; flags = 0;
} }
if (enc->codec_id == CODEC_ID_H264 || enc->codec_id == CODEC_ID_MPEG4) { if (enc->codec_id == CODEC_ID_H264 || enc->codec_id == CODEC_ID_MPEG4) {