mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 17:55:21 +00:00
use AVFormatContext with av_log
Originally committed as revision 8245 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
066a81a80f
commit
5095aaa91c
@ -267,7 +267,7 @@ static int swf_write_header(AVFormatContext *s)
|
|||||||
}
|
}
|
||||||
audio_enc = enc;
|
audio_enc = enc;
|
||||||
} else {
|
} else {
|
||||||
av_log(enc, AV_LOG_ERROR, "SWF muxer only supports MP3\n");
|
av_log(s, AV_LOG_ERROR, "SWF muxer only supports MP3\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -276,7 +276,7 @@ static int swf_write_header(AVFormatContext *s)
|
|||||||
enc->codec_id == CODEC_ID_MJPEG ) {
|
enc->codec_id == CODEC_ID_MJPEG ) {
|
||||||
video_enc = enc;
|
video_enc = enc;
|
||||||
} else {
|
} else {
|
||||||
av_log(enc, AV_LOG_ERROR, "SWF muxer only supports VP6, FLV1 and MJPEG\n");
|
av_log(s, AV_LOG_ERROR, "SWF muxer only supports VP6, FLV1 and MJPEG\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user