Commit 785aac67 authored by Vignesh Venkatasubramanian's avatar Vignesh Venkatasubramanian Committed by Gerrit Code Review
Browse files

Merge "Remove fatal() call in webmdec.c"

Showing with 2 additions and 1 deletion
...@@ -86,7 +86,8 @@ int file_is_webm(struct WebmInputContext *webm_ctx, ...@@ -86,7 +86,8 @@ int file_is_webm(struct WebmInputContext *webm_ctx,
} else if (codec_id == NESTEGG_CODEC_VP9) { } else if (codec_id == NESTEGG_CODEC_VP9) {
vpx_ctx->fourcc = VP9_FOURCC; vpx_ctx->fourcc = VP9_FOURCC;
} else { } else {
fatal("Not VPx video, quitting.\n"); fprintf(stderr, "Not VPx video, quitting.\n");
goto fail;
} }
webm_ctx->video_track = i; webm_ctx->video_track = i;
......
Supports Markdown
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