Commit b983a5c6 authored by Michael Niedermayer's avatar Michael Niedermayer

print fourcc in a readable form if possible

Originally committed as revision 4554 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d156a7b7
...@@ -767,12 +767,14 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) ...@@ -767,12 +767,14 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
codec_name = enc->codec_name; codec_name = enc->codec_name;
} else { } else {
/* output avi tags */ /* output avi tags */
if (enc->codec_type == CODEC_TYPE_VIDEO) { if( isprint(enc->codec_tag&0xFF) && isprint((enc->codec_tag>>8)&0xFF)
snprintf(buf1, sizeof(buf1), "%c%c%c%c", && isprint((enc->codec_tag>>16)&0xFF) && isprint((enc->codec_tag>>24)&0xFF)){
snprintf(buf1, sizeof(buf1), "%c%c%c%c / 0x%04X",
enc->codec_tag & 0xff, enc->codec_tag & 0xff,
(enc->codec_tag >> 8) & 0xff, (enc->codec_tag >> 8) & 0xff,
(enc->codec_tag >> 16) & 0xff, (enc->codec_tag >> 16) & 0xff,
(enc->codec_tag >> 24) & 0xff); (enc->codec_tag >> 24) & 0xff,
enc->codec_tag);
} else { } else {
snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag); snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag);
} }
......
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