This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
* Add defaults to switch statements
Originally committed as revision 465 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Philip Gladstone
23 years ago
parent
ddceb31d93
commit
ac5e6a5bd7
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
libav/mpeg.c
+ 4
- 0
libav/mpeg.c
View File
@@ -191,6 +191,8 @@ static int mpeg_mux_init(AVFormatContext *ctx)
stream->max_buffer_size = 46 * 1024;
s->video_bound++;
break;
default:
abort();
}
}
@@ -226,6 +228,8 @@ static int mpeg_mux_init(AVFormatContext *ctx)
st->codec.frame_rate,
90000 * FRAME_RATE_BASE);
break;
default:
abort();
}
}
return 0;
Write
Preview
Loading…
Cancel
Save