]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/utils.c
Use DECLARE_ALIGNED in yet another place
[ffmpeg] / libavcodec / utils.c
index 4a8cb8a603e1c82c6dea92f84dee102c36bb9e64..4ebc7c324b08fef468b62809af6e15ca43150870 100644 (file)
@@ -1219,6 +1219,10 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
         snprintf(buf, buf_size, "Subtitle: %s", codec_name);
         bitrate = enc->bit_rate;
         break;
+    case CODEC_TYPE_ATTACHMENT:
+        snprintf(buf, buf_size, "Attachment: %s", codec_name);
+        bitrate = enc->bit_rate;
+        break;
     default:
         snprintf(buf, buf_size, "Invalid Codec type %d", enc->codec_type);
         return;