[FFmpeg-cvslog] r18355 - trunk/libavformat/movenc.c
bcoudurier
subversion
Tue Apr 7 22:37:30 CEST 2009
Author: bcoudurier
Date: Tue Apr 7 22:37:30 2009
New Revision: 18355
Log:
override mov fourcc for pcm audio, this is safer when stream copying
Modified:
trunk/libavformat/movenc.c
Modified: trunk/libavformat/movenc.c
==============================================================================
--- trunk/libavformat/movenc.c Tue Apr 7 21:29:00 2009 (r18354)
+++ trunk/libavformat/movenc.c Tue Apr 7 22:37:30 2009 (r18355)
@@ -602,7 +602,8 @@ static int mov_find_codec_tag(AVFormatCo
tag = codec_get_tag(codec_3gp_tags, track->enc->codec_id);
} else if (!tag || (track->enc->strict_std_compliance >= FF_COMPLIANCE_NORMAL &&
(tag == MKTAG('d','v','c','p') ||
- track->enc->codec_id == CODEC_ID_RAWVIDEO))) {
+ track->enc->codec_id == CODEC_ID_RAWVIDEO ||
+ av_get_bits_per_sample(track->enc->codec_id)))) { // pcm audio
if (track->enc->codec_id == CODEC_ID_DVVIDEO) {
if (track->enc->height == 480) /* NTSC */
if (track->enc->pix_fmt == PIX_FMT_YUV422P) tag = MKTAG('d','v','5','n');
More information about the ffmpeg-cvslog
mailing list