mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-04 09:15:05 +00:00
Cosmetics
This commit is contained in:
parent
2c665a8549
commit
e73edbe0b1
@ -18,6 +18,8 @@
|
||||
#include "common.h"
|
||||
#include "r_asf.h"
|
||||
|
||||
#define MAGIC_ASF_WMV 0x3026b275
|
||||
|
||||
int
|
||||
asf_reader_c::probe_file(mm_io_c *io,
|
||||
int64_t size) {
|
||||
@ -32,7 +34,7 @@ asf_reader_c::probe_file(mm_io_c *io,
|
||||
return 0;
|
||||
io->setFilePointer(0, seek_beginning);
|
||||
|
||||
if (get_uint32_be(buf) == 0x3026b275) {
|
||||
if (MAGIC_ASF_WMV == get_uint32_be(buf)) {
|
||||
id_result_container_unsupported(io->get_file_name(), "Windows Media (ASF/WMV)");
|
||||
// Never reached:
|
||||
return 1;
|
||||
|
Loading…
Reference in New Issue
Block a user