1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

cosmetics

Originally committed as revision 16535 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2009-01-11 10:42:24 +00:00
parent 985688b8e5
commit 87609b51da

View File

@ -917,10 +917,10 @@ static int mov_write_hdlr_tag(ByteIOContext *pb, MOVTrack *track)
if (track->enc->codec_type == CODEC_TYPE_VIDEO) {
hdlr_type = "vide";
descr = "VideoHandler";
} else if (track->enc->codec_type == CODEC_TYPE_AUDIO){
} else if (track->enc->codec_type == CODEC_TYPE_AUDIO) {
hdlr_type = "soun";
descr = "SoundHandler";
} else if (track->enc->codec_type == CODEC_TYPE_SUBTITLE){
} else if (track->enc->codec_type == CODEC_TYPE_SUBTITLE) {
if (track->mode == MODE_IPOD) hdlr_type = "sbtl";
else hdlr_type = "text";
descr = "SubtitleHandler";