Commit 0d58971e authored by philipjsg's avatar philipjsg

* Add defaults to switch statements


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@465 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 125ea1a8
...@@ -191,6 +191,8 @@ static int mpeg_mux_init(AVFormatContext *ctx) ...@@ -191,6 +191,8 @@ static int mpeg_mux_init(AVFormatContext *ctx)
stream->max_buffer_size = 46 * 1024; stream->max_buffer_size = 46 * 1024;
s->video_bound++; s->video_bound++;
break; break;
default:
abort();
} }
} }
...@@ -226,6 +228,8 @@ static int mpeg_mux_init(AVFormatContext *ctx) ...@@ -226,6 +228,8 @@ static int mpeg_mux_init(AVFormatContext *ctx)
st->codec.frame_rate, st->codec.frame_rate,
90000 * FRAME_RATE_BASE); 90000 * FRAME_RATE_BASE);
break; break;
default:
abort();
} }
} }
return 0; 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