| Index: source/libvpx/nestegg/src/nestegg.c
|
| ===================================================================
|
| --- source/libvpx/nestegg/src/nestegg.c (revision 172621)
|
| +++ source/libvpx/nestegg/src/nestegg.c (working copy)
|
| @@ -127,6 +127,7 @@
|
|
|
| /* Track IDs */
|
| #define TRACK_ID_VP8 "V_VP8"
|
| +#define TRACK_ID_VP9 "V_VP9"
|
| #define TRACK_ID_VORBIS "A_VORBIS"
|
|
|
| enum vint_mask {
|
| @@ -1669,6 +1670,9 @@
|
| if (strcmp(codec_id, TRACK_ID_VP8) == 0)
|
| return NESTEGG_CODEC_VP8;
|
|
|
| + if (strcmp(codec_id, TRACK_ID_VP9) == 0)
|
| + return NESTEGG_CODEC_VP9;
|
| +
|
| if (strcmp(codec_id, TRACK_ID_VORBIS) == 0)
|
| return NESTEGG_CODEC_VORBIS;
|
|
|
|
|