Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
ffmpeg: Add TTF font/attachment support to myth_utils.c
Refs #9294
  • Loading branch information
Mark Kendall committed May 3, 2011
1 parent 4b48823 commit a0b999d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mythtv/external/FFmpeg/libavcodec/myth_utils.c
Expand Up @@ -212,6 +212,9 @@ const char *ff_codec_id_string(enum CodecID codec_id)

case CODEC_ID_MPEG2TS: return "MPEG2TS";

/* Attachment codecs */
case CODEC_ID_TTF: return "TTF font";

case CODEC_ID_PROBE: return "PROBE";
}
return "Unknown Codec ID";
Expand All @@ -229,6 +232,7 @@ const char *ff_codec_type_string(enum CodecType codec_type)
case CODEC_TYPE_AUDIO: return "Audio";
case CODEC_TYPE_DATA: return "Data";
case CODEC_TYPE_SUBTITLE: return "Subtitle";
case CODEC_TYPE_ATTACHMENT: return "Attachment";
}
return "Invalid Codec Type";
};
Expand Down

0 comments on commit a0b999d

Please sign in to comment.