mjpeg_validate.cc 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 *  Copyright 2012 The LibYuv Project Authors. All rights reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS. All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include "libyuv/mjpeg_decoder.h"

13 14
#include <string.h>  // For memchr.

15
#ifdef __cplusplus
16
namespace libyuv {
17 18
extern "C" {
#endif
19

20
// Helper function to scan for EOI marker (0xff 0xd9).
21
static LIBYUV_BOOL ScanEOI(const uint8* sample, size_t sample_size) {
22 23 24 25 26 27 28 29 30 31 32 33 34
  if (sample_size >= 2) {
    const uint8* end = sample + sample_size - 1;
    const uint8* it = sample;
    while (it < end) {
      // TODO(fbarchard): scan for 0xd9 instead.
      it = static_cast<const uint8 *>(memchr(it, 0xff, end - it));
      if (it == NULL) {
        break;
      }
      if (it[1] == 0xd9) {
        return LIBYUV_TRUE;  // Success: Valid jpeg.
      }
      ++it;  // Skip over current 0xff.
35 36 37 38 39 40
    }
  }
  // ERROR: Invalid jpeg end code not found. Size sample_size
  return LIBYUV_FALSE;
}

41
// Helper function to validate the jpeg appears intact.
42
LIBYUV_BOOL ValidateJpeg(const uint8* sample, size_t sample_size) {
43 44 45
  // Maximum size that ValidateJpeg will consider valid.
  const size_t kMaxJpegSize = 0x7fffffffull;
  if (sample_size < 64 || sample_size > kMaxJpegSize || !sample) {
46
    // ERROR: Invalid jpeg size: sample_size
47
    return LIBYUV_FALSE;
48
  }
49
  if (sample[0] != 0xff || sample[1] != 0xd8) {  // SOI marker
50
    // ERROR: Invalid jpeg initial start code
51
    return LIBYUV_FALSE;
52
  }
53 54
  // Step over SOI marker and scan for EOI.
  return ScanEOI(sample + 2, sample_size - 2);
55 56
}

57 58
#ifdef __cplusplus
}  // extern "C"
59
}  // namespace libyuv
60
#endif
61