Skip to content

Commit

Permalink
Add AAC and AAC_LATM tags to mythtranscode info output.
Browse files Browse the repository at this point in the history
Fixes #11380
  • Loading branch information
Paul Gardiner authored and wagnerrp committed Jan 26, 2013
1 parent b05ecd4 commit e78e59c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mythtv/programs/mythtranscode/transcode.cpp
Expand Up @@ -865,6 +865,12 @@ int Transcode::TranscodeFile(const QString &inputname,
case AV_CODEC_ID_MP2:
audio_codec_name = "mp2";
break;
case AV_CODEC_ID_AAC:
audio_codec_name = "aac";
break;
case AV_CODEC_ID_AAC_LATM:
audio_codec_name = "aac_latm";
break;
default:
audio_codec_name = "unknown";
}
Expand Down

0 comments on commit e78e59c

Please sign in to comment.