webm: add support for V_VP9
Tags VP9 tracks with the V_VP9 video type when writing to .webm files,
and supports decoding both from vpxdec without specifying --codec.
Change-Id: I0ef61dee06f4db2a74032b142a4b4976c51faf6e
diff --git a/vpxdec.c b/vpxdec.c
index aa3f342..f7281a4 100644
--- a/vpxdec.c
+++ b/vpxdec.c
@@ -537,6 +537,7 @@
unsigned int *fps_num) {
unsigned int i, n;
int track_type = -1;
+ int codec_id;
nestegg_io io = {nestegg_read_cb, nestegg_seek_cb, nestegg_tell_cb, 0};
nestegg_video_params params;
@@ -557,8 +558,13 @@
goto fail;
}
- if (nestegg_track_codec_id(input->nestegg_ctx, i) != NESTEGG_CODEC_VP8) {
- fprintf(stderr, "Not VP8 video, quitting.\n");
+ codec_id = nestegg_track_codec_id(input->nestegg_ctx, i);
+ if (codec_id == NESTEGG_CODEC_VP8) {
+ *fourcc = VP8_FOURCC;
+ } else if (codec_id == NESTEGG_CODEC_VP9) {
+ *fourcc = VP9_FOURCC;
+ } else {
+ fprintf(stderr, "Not VPx video, quitting.\n");
exit(1);
}
@@ -569,7 +575,6 @@
*fps_den = 0;
*fps_num = 0;
- *fourcc = VP8_FOURCC;
*width = params.width;
*height = params.height;
return 1;