| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebM project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 if (video_track == NULL) { | 97 if (video_track == NULL) { |
| 98 rewind_and_reset(webm_ctx, vpx_ctx); | 98 rewind_and_reset(webm_ctx, vpx_ctx); |
| 99 return 0; | 99 return 0; |
| 100 } | 100 } |
| 101 | 101 |
| 102 if (!strncmp(video_track->GetCodecId(), "V_VP8", 5)) { | 102 if (!strncmp(video_track->GetCodecId(), "V_VP8", 5)) { |
| 103 vpx_ctx->fourcc = VP8_FOURCC; | 103 vpx_ctx->fourcc = VP8_FOURCC; |
| 104 } else if (!strncmp(video_track->GetCodecId(), "V_VP9", 5)) { | 104 } else if (!strncmp(video_track->GetCodecId(), "V_VP9", 5)) { |
| 105 vpx_ctx->fourcc = VP9_FOURCC; | 105 vpx_ctx->fourcc = VP9_FOURCC; |
| 106 } else if (!strncmp(video_track->GetCodecId(), "V_VP10", 6)) { |
| 107 vpx_ctx->fourcc = VP10_FOURCC; |
| 106 } else { | 108 } else { |
| 107 rewind_and_reset(webm_ctx, vpx_ctx); | 109 rewind_and_reset(webm_ctx, vpx_ctx); |
| 108 return 0; | 110 return 0; |
| 109 } | 111 } |
| 110 | 112 |
| 111 vpx_ctx->framerate.denominator = 0; | 113 vpx_ctx->framerate.denominator = 0; |
| 112 vpx_ctx->framerate.numerator = 0; | 114 vpx_ctx->framerate.numerator = 0; |
| 113 vpx_ctx->width = static_cast<uint32_t>(video_track->GetWidth()); | 115 vpx_ctx->width = static_cast<uint32_t>(video_track->GetWidth()); |
| 114 vpx_ctx->height = static_cast<uint32_t>(video_track->GetHeight()); | 116 vpx_ctx->height = static_cast<uint32_t>(video_track->GetHeight()); |
| 115 | 117 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 webm_ctx->block_frame_index = 0; | 222 webm_ctx->block_frame_index = 0; |
| 221 webm_ctx->timestamp_ns = 0; | 223 webm_ctx->timestamp_ns = 0; |
| 222 webm_ctx->reached_eos = 0; | 224 webm_ctx->reached_eos = 0; |
| 223 | 225 |
| 224 return 0; | 226 return 0; |
| 225 } | 227 } |
| 226 | 228 |
| 227 void webm_free(struct WebmInputContext *webm_ctx) { | 229 void webm_free(struct WebmInputContext *webm_ctx) { |
| 228 reset(webm_ctx); | 230 reset(webm_ctx); |
| 229 } | 231 } |
| OLD | NEW |