mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
use standard codec tag if the specified tag is out of range and would be
truncated Originally committed as revision 5488 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
+1
-1
@@ -60,7 +60,7 @@ int put_wav_header(ByteIOContext *pb, AVCodecContext *enc)
|
||||
int bps, blkalign, bytespersec;
|
||||
int hdrsize = 18;
|
||||
|
||||
if(!enc->codec_tag)
|
||||
if(!enc->codec_tag || enc->codec_tag > 0xffff)
|
||||
enc->codec_tag = codec_get_tag(codec_wav_tags, enc->codec_id);
|
||||
if(!enc->codec_tag)
|
||||
return -1;
|
||||
|
||||
Reference in New Issue
Block a user