diff options
Diffstat (limited to 'third_party/aom/examples/decode_to_md5.c')
-rw-r--r-- | third_party/aom/examples/decode_to_md5.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/third_party/aom/examples/decode_to_md5.c b/third_party/aom/examples/decode_to_md5.c index 5ab2532096..bc127b78df 100644 --- a/third_party/aom/examples/decode_to_md5.c +++ b/third_party/aom/examples/decode_to_md5.c @@ -34,13 +34,11 @@ #include <stdlib.h> #include <string.h> -#include "aom/aomdx.h" #include "aom/aom_decoder.h" - -#include "../md5_utils.h" -#include "../tools_common.h" -#include "../video_reader.h" -#include "./aom_config.h" +#include "aom/aomdx.h" +#include "common/md5_utils.h" +#include "common/tools_common.h" +#include "common/video_reader.h" static void get_image_md5(const aom_image_t *img, unsigned char digest[16]) { int plane, y; @@ -110,7 +108,7 @@ int main(int argc, char **argv) { size_t frame_size = 0; const unsigned char *frame = aom_video_reader_get_frame(reader, &frame_size); - if (aom_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0)) + if (aom_codec_decode(&codec, frame, frame_size, NULL)) die_codec(&codec, "Failed to decode frame"); while ((img = aom_codec_get_frame(&codec, &iter)) != NULL) { |