wireshark/wiretap/mp4.c
Gerald Combs 116d381ea4 wiretap: Fix mp4.c compilation.
Include string.h as suggested by clang:

../wiretap/mp4.c:33:4: error: implicitly declaring library function 'memcmp' with type 'int (const void *, const void *, unsigned long)' [-Werror,-Wimplicit-function-declaration]
                        memcmp(magic_buf + 4, mp4_magic, sizeof (mp4_magic)))
                        ^
../wiretap/mp4.c:33:4: note: include the header <string.h> or explicitly provide a declaration for 'memcmp'

Change-Id: I2369ad140f95ca10f22c176b9e2646950b1a8f65
Reviewed-on: https://code.wireshark.org/review/35814
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Gerald Combs <gerald@wireshark.org>
2020-01-14 22:24:24 +00:00

63 lines
1.3 KiB
C

/* mp4.c
*
* MP4 (ISO/IEC 14496-12) file format decoder for the Wiretap library.
*
* Wiretap Library
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "mp4.h"
#include <string.h>
#include "file_wrappers.h"
#include "wtap-int.h"
static const guint8 mp4_magic[] = { 'f', 't', 'y', 'p' };
wtap_open_return_val
mp4_open(wtap *wth, int *err, gchar **err_info)
{
char magic_buf[8];
int bytes_read;
bytes_read = file_read(magic_buf, sizeof (magic_buf), wth->fh);
if (bytes_read < 0) {
*err = file_error(wth->fh, err_info);
return WTAP_OPEN_ERROR;
}
if (bytes_read == 0)
return WTAP_OPEN_NOT_MINE;
if (bytes_read == sizeof (magic_buf) &&
memcmp(magic_buf + 4, mp4_magic, sizeof (mp4_magic)))
return WTAP_OPEN_NOT_MINE;
if (file_seek(wth->fh, 0, SEEK_SET, err) == -1)
return WTAP_OPEN_ERROR;
wth->file_type_subtype = WTAP_FILE_TYPE_SUBTYPE_MP4;
wth->file_encap = WTAP_ENCAP_MP4;
wth->file_tsprec = WTAP_TSPREC_SEC;
wth->subtype_read = wtap_full_file_read;
wth->subtype_seek_read = wtap_full_file_seek_read;
wth->snapshot_length = 0;
return WTAP_OPEN_MINE;
}
/*
* Editor modelines - https://www.wireshark.org/tools/modelines.html
*
* Local variables:
* c-basic-offset: 8
* tab-width: 8
* indent-tabs-mode: t
* End:
*
* vi: set shiftwidth=8 tabstop=8 noexpandtab:
* :indentSize=8:tabSize=8:noTabs=false:
*/