Commit 00496302 authored by Reimar Döffinger's avatar Reimar Döffinger

10l, fix nuv_header for the case when there is no video stream.

Originally committed as revision 14101 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 76d32428
......@@ -179,7 +179,7 @@ static int nuv_header(AVFormatContext *s, AVFormatParameters *ap) {
ctx->a_id = -1;
get_codec_data(pb, vst, ast, is_mythtv);
ctx->rtjpg_video = vst->codec->codec_id == CODEC_ID_NUV;
ctx->rtjpg_video = vst && vst->codec->codec_id == CODEC_ID_NUV;
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment