]> git.tuebingen.mpg.de Git - paraslash.git/log
paraslash.git
23 months agomp4: Get rid of find_standard_meta().
Andre Noll [Sat, 21 Aug 2021 11:30:02 +0000 (13:30 +0200)]
mp4: Get rid of find_standard_meta().

We don't need a dedicated function and data structure for that. Just
open-code the logic in create_ilst() and clean up this function a bit
while at it. Specifically:

* Call the loop variable "n" rather than "metaptr" since it is not
a pointer but an unsigned integer.

* Abort if we encounter a tag item name which is not one of the five
standard names. This can never occur because the origin of these
strings is the code in aac_afh.c which only passes standard names.

* Drop the integer return value, since the function can never
fail. Make it return the buffer pointer instead and get rid of the
corresponding parameter.

23 months agomp4: Improve parse_tag().
Andre Noll [Fri, 20 Aug 2021 12:23:04 +0000 (14:23 +0200)]
mp4: Improve parse_tag().

* Merge tag_add_field() and read_string() into parse_tag() since they
are simple enough and have only one caller.

* Avoid memory leaks in the error case.

* Let the function return an error code (rather than -1) in all cases,
and check the return value in the callers.

* Add a sanity check for the subsize.

* Avoid creating two copies of the tag value.

* Rename the variable for the tag value.

23 months agomp4: Simplify read_mp4a().
Andre Noll [Fri, 20 Aug 2021 11:38:55 +0000 (13:38 +0200)]
mp4: Simplify read_mp4a().

The single caller resets the file offset after the call, so we may
stop reading the atom after we've parsed the last field of interest,
which happens to be the sample rate.

23 months agomp4: Remove two local unused header_size variables.
Andre Noll [Fri, 20 Aug 2021 11:33:17 +0000 (13:33 +0200)]
mp4: Remove two local unused header_size variables.

The header size is an optional pointer argument of atom_read_header(),
i.e., callers may pass NULL if they aren't interested in the atom
header size.

23 months agomp4: Rename atom_read() to parse_leaf_atom().
Andre Noll [Thu, 19 Aug 2021 18:13:57 +0000 (20:13 +0200)]
mp4: Rename atom_read() to parse_leaf_atom().

For consistency and symmetry with parse_subatoms().

23 months agomp4: Reduce atom parsing to the bare minimum.
Andre Noll [Thu, 19 Aug 2021 18:07:13 +0000 (20:07 +0200)]
mp4: Reduce atom parsing to the bare minimum.

This replaces need_parse_when_meta_only() by need_atom() which is
called from parse_sub_atoms() for both regular opens and meta-only
opens to decide if the detected atom needs to be parsed.

After this patch we skip more atoms than we used to do, speeding up
the operation for both kinds of opens.

23 months agomp4: Convert "meta_only" to a boolean.
Andre Noll [Thu, 19 Aug 2021 17:13:31 +0000 (19:13 +0200)]
mp4: Convert "meta_only" to a boolean.

Several functions receive the "meta_only" parameter to distinguish
between regular and metadata-only opens. The parameter can only be
zero or one, so use a boolean because true/false is more descriptive
than 1/0.

23 months agomp4: Simplify parse_atoms().
Andre Noll [Thu, 19 Aug 2021 17:06:10 +0000 (19:06 +0200)]
mp4: Simplify parse_atoms().

We are only interested in subatoms of the moov atom, so skip everything
else. Rename the function to parse_root_atoms() and remove the comment
which does not convey any information anymore.

23 months agomp4: Remove two unused arrays from struct mp4_track.
Andre Noll [Thu, 19 Aug 2021 14:08:46 +0000 (16:08 +0200)]
mp4: Remove two unused arrays from struct mp4_track.

These arrays are allocated and initialized but their values are
never read.

23 months agomp4: Hide tracks array.
Andre Noll [Thu, 19 Aug 2021 13:52:13 +0000 (15:52 +0200)]
mp4: Hide tracks array.

All functions of mp4.c operate on the first audio track. This
patch makes this fact implicit which allows us to remove the public
mp4_get_total_tracks() and mp4_is_audio_track(). Moreover, the track
parameter can be removed from all public functions.

If no audio track was found in the mp4 file, we now return an error
from two public open functions of mp4.c. Otherwise, we maintain a
pointer to the first audio track within the mp4 structure and use
that to identify the track rather than letting the API users pass
the track number.

23 months agomp4: Simplify chunk_of_sample().
Andre Noll [Wed, 18 Aug 2021 21:15:07 +0000 (23:15 +0200)]
mp4: Simplify chunk_of_sample().

This function was unnecessarily complex. The equivalent replacement
code is much shorter and easier to read. Besides reducing the number
of local variables, we drop the chunk_sample parameter and return
this number via the return value of the function.

23 months agomp4: Merge chunk_to_offset() into mp4_set_sample_position().
Andre Noll [Wed, 18 Aug 2021 19:18:29 +0000 (21:18 +0200)]
mp4: Merge chunk_to_offset() into mp4_set_sample_position().

Another equivalent transformation which shortens the code and improves
readability.

23 months agomp4: Merge sample_range_size() into mp4_set_sample_position().
Andre Noll [Wed, 18 Aug 2021 19:08:45 +0000 (21:08 +0200)]
mp4: Merge sample_range_size() into mp4_set_sample_position().

This equivalent transformation shortens the code and improves
readability.

23 months agomp4: Provide return value for mp4_set_sample_position().
Andre Noll [Wed, 18 Aug 2021 18:59:25 +0000 (20:59 +0200)]
mp4: Provide return value for mp4_set_sample_position().

This function fails if the given parameters are invalid. Detect this
and return EINVAL in this case. Add corresponding error checking to
the aac audio format handler.

23 months agomp4: Simplify sample_range_size().
Andre Noll [Wed, 18 Aug 2021 18:46:52 +0000 (20:46 +0200)]
mp4: Simplify sample_range_size().

Reduce indentation by making the else branch unconditional and simply
call the track pointer "t" rather than "p_track".

23 months agomp4: Merge sample_to_offset() into mp4_set_sample_position().
Andre Noll [Wed, 18 Aug 2021 18:36:50 +0000 (20:36 +0200)]
mp4: Merge sample_to_offset() into mp4_set_sample_position().

The former is only called by the latter, and both are
short. De-obfuscate the code a little by avoiding pointless local
variables.

23 months agomp4: Rename mp4_total_tracks() to mp4_get_total_tracks().
Andre Noll [Wed, 18 Aug 2021 16:12:44 +0000 (18:12 +0200)]
mp4: Rename mp4_total_tracks() to mp4_get_total_tracks().

Just to be consistent with other public functions whose name contain
a predicate. Move the function down to related functions.

23 months agomp4: Remove ->error of struct mp4.
Andre Noll [Wed, 18 Aug 2021 16:08:38 +0000 (18:08 +0200)]
mp4: Remove ->error of struct mp4.

It's easier to have track_add(), the only function which sets ->error,
return an integer error code instead. Since track_add() is simple
and is only called by parse_sub_atoms(), open-code the logic there.

Also, don't reset ->total_tracks on errors because this leads to a
memory leak, don't increase the track counter on errors and remove
the comment which only states what is obvious.

23 months agomp4: Add error checking to parse_atoms() and friends.
Andre Noll [Wed, 18 Aug 2021 15:08:08 +0000 (17:08 +0200)]
mp4: Add error checking to parse_atoms() and friends.

After this patch read errors are propagated all the way down from the
read_data() primitive to the public entry functions mp4_open_read()
and mp4_open_meta().

23 months agomp4: Add error checking for atom_read().
Andre Noll [Wed, 18 Aug 2021 14:59:35 +0000 (16:59 +0200)]
mp4: Add error checking for atom_read().

While the individual atom parsers all perform error checking and
return an error code, their caller, atom_read(), ignores errors.

Address this shortcoming, simplify the function by using a switch
instead of an if-else chain and move the descriptions of the atoms
to the enum where they belong.

23 months agomp4: Improve handling of read errors.
Andre Noll [Wed, 18 Aug 2021 13:25:17 +0000 (15:25 +0200)]
mp4: Improve handling of read errors.

Currently read_data() of mp4.c is an atrocious mess. The ->read()
callback is defined to return uint32_t, but the return value is
stored in a signed 32 bit integer. Moreover, read_data() contains a
dead store, it handles neither short nor interrupted reads correctly,
and it moves the file position backwards on errors.

While this is easy to fix, a more intricate problem is that most
callers of read_data(), including all read_intX() helpers, ignore the
return value of read_data() and return uninitialized stack contents in
the error case. This is kind of dealt with by the ->read_error member
of struct mp4, but this not more than a kludge, which, according to
the comments, was applied after several CVEs had been filed against
the library.

Let's DTRT here, even though it adds a fair amount of new code:
Check the return value of each read operation and fail early on errors.

We have to distinguish three cases: error, EOF, and success, encoded
as return values -1, 0 and 1, respectively. This commit converts most
functions which read from an mp4 file to this convention. More work
is required as return values are not checked everywhere yet. This was
left for subsequent commits to keep the already large patch within
reasonable size.

Since we don't rely on ->read_error of struct mp4 any more, it can
be removed.

23 months agomp4: Remove dead store from find_atom_v2().
Andre Noll [Wed, 18 Aug 2021 13:15:41 +0000 (15:15 +0200)]
mp4: Remove dead store from find_atom_v2().

The "size" variable is not used in the code which follows the loop
we are breaking out here.

23 months agomp4: Move read_intX functions.
Andre Noll [Wed, 18 Aug 2021 13:11:09 +0000 (15:11 +0200)]
mp4: Move read_intX functions.

This way, they are located next to each other, and are ordered by the
size of the integer value they read.

Pure code movement, no real changes.

23 months agomp4: Rename read_char() to read_int8().
Andre Noll [Wed, 18 Aug 2021 13:08:25 +0000 (15:08 +0200)]
mp4: Rename read_char() to read_int8().

That's more to the point, and is consistent with the other functions
which read integer values.

23 months agomp4: Make channel count a 16 bit quantity.
Andre Noll [Wed, 18 Aug 2021 13:05:09 +0000 (15:05 +0200)]
mp4: Make channel count a 16 bit quantity.

It gets initialized by reading an 16 bit integer.

23 months agomp4: Make most members of struct mp4_track unsigned.
Andre Noll [Wed, 18 Aug 2021 13:02:43 +0000 (15:02 +0200)]
mp4: Make most members of struct mp4_track unsigned.

All of these get initialized by reading an unsigned 32 bit value from
the file, so they should also be unsigned.

23 months agomp4: Merge membuffer_free() into membuffer_transfer_from_file().
Andre Noll [Sat, 14 Aug 2021 21:20:15 +0000 (23:20 +0200)]
mp4: Merge membuffer_free() into membuffer_transfer_from_file().

The latter is the only caller of the former.

23 months agomp4: Clean up membuffer_transfer_from_file().
Andre Noll [Sat, 14 Aug 2021 21:14:38 +0000 (23:14 +0200)]
mp4: Clean up membuffer_transfer_from_file().

The buffer pointer can never be NULL, so drop this check. Next, instead
of defining a void * pointer and cast it to char *, use char * directly.
Finally, the cast to unsigned has no effect, so drop it.

23 months agomp4: Drop return value from membuffer_write() and friends.
Andre Noll [Sat, 14 Aug 2021 21:07:11 +0000 (23:07 +0200)]
mp4: Drop return value from membuffer_write() and friends.

This function always returns the value it received via the last
argument. Pointless.

23 months agomp4: Remove the membuffer error bit.
Andre Noll [Sat, 14 Aug 2021 20:53:39 +0000 (22:53 +0200)]
mp4: Remove the membuffer error bit.

Due to the previous cleanups, it is never set, so remove all code
which checks whether the bit is set.

23 months agomp4: Free the membuffer in membuffer_detach().
Andre Noll [Sat, 14 Aug 2021 20:46:50 +0000 (22:46 +0200)]
mp4: Free the membuffer in membuffer_detach().

Each call to this function is followed by a call to membuffer_free(),
which frees the membuffer but not the data buffer because that was
set to NULL.

It is simpler to free the membuffer directly in membuffer_detach().

23 months agomp4: Simplify membuffer_create().
Andre Noll [Sat, 14 Aug 2021 20:40:00 +0000 (22:40 +0200)]
mp4: Simplify membuffer_create().

Since para_malloc() never returns NULL, the error state can only be
zero. Use para_calloc(), skip the zero initializations and kill a
pointless local variable.

23 months agomp4: Check return value of membuffer_transfer_from_file().
Andre Noll [Sat, 14 Aug 2021 20:27:12 +0000 (22:27 +0200)]
mp4: Check return value of membuffer_transfer_from_file().

This function calls the ->read() method of the callback, which may
fail. Currently all three callers ignore the return value and rely
on the fact that the membuffer is set to error state, which will be
detected later.

It's easier and clearer to check for errors in the callers and fail
early on read errors. Since the membuffer is useless in the error
case, free it right away in membuffer_transfer_from_file(). Change
the function to return bool instead of unsigned while at it and remove
a pointless cast in one of its callers.

23 months agomp4: Drop integer return type from modify_moov().
Andre Noll [Sat, 14 Aug 2021 18:53:15 +0000 (20:53 +0200)]
mp4: Drop integer return type from modify_moov().

This function returns either zero or one to indicate success. On
success, a pointer to a buffer and the buffer size are returned. It
is simpler and less redundant to indicate failure by returning a NULL
buffer pointer. Rather than using a void ** argument for the buffer,
let the function return void *.

23 months agomp4: Reduce indentation in modify_moov().
Andre Noll [Sat, 14 Aug 2021 18:42:55 +0000 (20:42 +0200)]
mp4: Reduce indentation in modify_moov().

If the condition of the if clause is true, we return early, so
the else clause can be made unconditional.

No real change.

23 months agomp4: Merge mp4_close() and tag_delete().
Andre Noll [Sat, 14 Aug 2021 18:21:51 +0000 (20:21 +0200)]
mp4: Merge mp4_close() and tag_delete().

The latter is only called by the former, and both are short enough.
Don't bother to zero out meta->tags and meta->count because we free
the containing mp4 structure as well.

23 months agomp4: Rename parse_metadata() to read_ilst().
Andre Noll [Sat, 14 Aug 2021 18:14:51 +0000 (20:14 +0200)]
mp4: Rename parse_metadata() to read_ilst().

To make the naming consistent with the other atom parsers. Kill
a pointless cast and unnecessary braces in the caller while at it.

23 months agomp4: Clean up membuffer_write_std_tag().
Andre Noll [Sat, 14 Aug 2021 17:38:21 +0000 (19:38 +0200)]
mp4: Clean up membuffer_write_std_tag().

Remove the check for the compilation flag since we never pass "cpil"
to this function. Remove the flags variable whose value is now always
one. Introduce a variable for the string length instead of calling
strlen() three times, and unify the way comments are formatted.

23 months agomp4: Clean up find_standard_meta().
Andre Noll [Sat, 14 Aug 2021 17:22:17 +0000 (19:22 +0200)]
mp4: Clean up find_standard_meta().

Use ARRAY_SIZE() instead of open-coding it, move the stdmetas array
into the function since it is only used there, and make it const.
Also replace 0 by NULL, since the function returns a pointer, and
remove the pointless comment.

Finally, move the function and the declaration of the stdmeta_entry
structure closer to its single user.

23 months agomp4: Simplify create_ilst().
Andre Noll [Sat, 14 Aug 2021 17:15:29 +0000 (19:15 +0200)]
mp4: Simplify create_ilst().

This function contains a lot of overhead which is just dead code
for paraslash since we only care about five standard tags, In
particular, we never write custom tags. Removing the single caller
of membuffer_write_custom_tag() left a whole bunch of other functions
and data structures unused, so these can be removed as well.

23 months agomp4: Call metadata structures "meta".
Andre Noll [Sat, 14 Aug 2021 17:00:06 +0000 (19:00 +0200)]
mp4: Call metadata structures "meta".

Currently they are called "tags" or "data", both of which are confusing
because struct mp4_metadata has a member called "tags", and "data"
is also used for generic buffers in the various I/O helpers.

23 months agoaac_afh: Simplify aac_afh_rewrite_tags().
Andre Noll [Thu, 19 Aug 2021 20:13:47 +0000 (22:13 +0200)]
aac_afh: Simplify aac_afh_rewrite_tags().

This function was disgusting because it listed the five standard
tags in three different ways. The new replace_or_add_tag() avoids
this issue.

23 months agomp4: Drop metadata parameter from mp4_meta_update().
Andre Noll [Sat, 14 Aug 2021 16:48:56 +0000 (18:48 +0200)]
mp4: Drop metadata parameter from mp4_meta_update().

The function can as well access the modified metadata structure via
the mp4 pointer. Drop the parameter also from modify_moov() for the
same reason.

23 months agomp4: Introduce mp4_get_meta().
Andre Noll [Sat, 14 Aug 2021 16:42:16 +0000 (18:42 +0200)]
mp4: Introduce mp4_get_meta().

Simplify the API by returning a pointer to the metadata structure stored
inside struct mp4. This is easier than having two accessor functions.

23 months agomp4: Simplify and speed up metadata editing.
Andre Noll [Sat, 14 Aug 2021 15:53:59 +0000 (17:53 +0200)]
mp4: Simplify and speed up metadata editing.

Currently the aac audio format handler first calls mp4_open_meta()
to get the metadata tags, then alters the in-memory structure of the
tags according to the command line options and passes this modified
structure to mp4_meta_update() to rewrite the tags. This latter call
parses the tags again, which is unnecessary overhead.

This patch changes the signature of mp4_meta_update() to accept an
mp4 structure instead of a callback structure and uses that instead
of re-opening the file.

23 months agomp4: Fix memory leak in mp4_meta_update().
Andre Noll [Fri, 13 Aug 2021 20:00:32 +0000 (22:00 +0200)]
mp4: Fix memory leak in mp4_meta_update().

This function calls modify_moov() which allocates and returns a
possibly large buffer, but this buffer is never freed.

Found by valgrind.

23 months agomp4: Simplify and doxify meta tag accessors.
Andre Noll [Fri, 13 Aug 2021 18:51:38 +0000 (20:51 +0200)]
mp4: Simplify and doxify meta tag accessors.

The integer return value is redundant, so get rid of the value
parameter and simplify meta_find_by_name() accordingly. Document that
tag values are allocated on the heap and should be freed by the caller.

23 months agomp4: Simplify parse_tag().
Andre Noll [Fri, 13 Aug 2021 18:19:43 +0000 (20:19 +0200)]
mp4: Simplify parse_tag().

We don't care about arbitrarily named tags, and those tags we're
interested in are generally present in form of the standard tags
(ATOM_TITLE, ATOM_ARTIST etc.).

Since we now always call get_metadata_name() to get the string
representation of the tag, we don't need to make a copy any more,
just pass the const pointer directly to tag_add_field().

With this change in place it is obvious that we never pass a NULL or
empty tag name to tag_add_field(), and we don't pass a NULL pointer
for the value argument either, so remove the safety check.

23 months agomp4: Simplify parse_tag().
Andre Noll [Thu, 12 Aug 2021 17:32:51 +0000 (19:32 +0200)]
mp4: Simplify parse_tag().

paraslash fundamentally cares only about five metatags. So remove
all code from parse_tag() which handles the tags we don't care about.

23 months agomp4: Rename and simplify set_metadata_name()
Andre Noll [Wed, 11 Aug 2021 20:52:11 +0000 (22:52 +0200)]
mp4: Rename and simplify set_metadata_name()

This function is an atrocious mess. For one, the naming is confusing
because the function does not set the atom name, it *returns* it.
More importantly, the function defines a static array for no good
reason and then hard-codes the array indices in a large switch
statement.

It's much easier to simply return a pointer to a string literal and
perform the strdup operation in the single caller.

23 months agomp4: Mark callback function pointers as const.
Andre Noll [Wed, 11 Aug 2021 19:56:09 +0000 (21:56 +0200)]
mp4: Mark callback function pointers as const.

The code in mp4.c never modifies any of the members of the callback
structure.

23 months agomp4: Use uniform names for callback and mp4 structures.
Andre Noll [Wed, 11 Aug 2021 19:45:12 +0000 (21:45 +0200)]
mp4: Use uniform names for callback and mp4 structures.

Currently it's a confusing mess, with callbacks called f, ff, or
stream, where the former two are also used for pointers to struct
mp4. Let's call a spade a spade and use cb everywhere for the callbacks
while f is reserved to denote an mp4 pointer.

23 months agomp4: Hide ->read_error.
Andre Noll [Wed, 11 Aug 2021 19:37:16 +0000 (21:37 +0200)]
mp4: Hide ->read_error.

This does not belong into the callback structure whose fields are
supposed to get initialized by the audio format handler. Move it to
the internal struct mp4 instead, next to the existing error counter.

23 months agomp4: Open-code pointless truncate_stream().
Andre Noll [Wed, 11 Aug 2021 19:30:14 +0000 (21:30 +0200)]
mp4: Open-code pointless truncate_stream().

This trivial one-liner has only a single caller.

23 months agomp4: Don't store the sample size in the mp4 structure.
Andre Noll [Wed, 11 Aug 2021 19:14:06 +0000 (21:14 +0200)]
mp4: Don't store the sample size in the mp4 structure.

Currently it is set but never read. We need to keep the read_int16()
call, however, to advance the file offset.

23 months agomp4: Don't store the stsd entry count.
Andre Noll [Wed, 11 Aug 2021 19:12:13 +0000 (21:12 +0200)]
mp4: Don't store the stsd entry count.

A local variable in read_stsd() will do as well.

23 months agomp4: Remove two unused fields of struct mp4.
Andre Noll [Wed, 11 Aug 2021 19:04:38 +0000 (21:04 +0200)]
mp4: Remove two unused fields of struct mp4.

These are neither set nor read.

23 months agomp4: Don't parse the ctts atom any more.
Andre Noll [Wed, 11 Aug 2021 19:02:33 +0000 (21:02 +0200)]
mp4: Don't parse the ctts atom any more.

The ctts sample offsets are useless for paraslash, so get rid of
the parser.

23 months agomp4: Don't parse the movie header any more.
Andre Noll [Wed, 11 Aug 2021 18:49:21 +0000 (20:49 +0200)]
mp4: Don't parse the movie header any more.

The duration and time scale are taken from the audio track while the
values stored in the movie header (if present) are ignored anyway.

23 months agomp4: Simplify atom_compare().
Andre Noll [Wed, 11 Aug 2021 17:40:03 +0000 (19:40 +0200)]
mp4: Simplify atom_compare().

No need for a condition here. Change the return type to bool, and
remove the pointless and misspelt comment.

23 months agomp4: Don't store track type anymore.
Andre Noll [Wed, 11 Aug 2021 17:36:59 +0000 (19:36 +0200)]
mp4: Don't store track type anymore.

The only thing we care about is whether or not a track is an audio
track. Hence a simple boolean suffices and the "tracks" enum can
be removed.

23 months agomp4: Don't parse the esds atom any more.
Andre Noll [Wed, 11 Aug 2021 17:26:00 +0000 (19:26 +0200)]
mp4: Don't parse the esds atom any more.

With the decoder specific config no longer in use, we can simplify
mp4.c further by getting rid of some cryptic and underdocumented code
which no longer does anything useful for us.

23 months agomp4: Introduce mp4_is_audio_track().
Andre Noll [Wed, 11 Aug 2021 17:12:07 +0000 (19:12 +0200)]
mp4: Introduce mp4_is_audio_track().

Currently the aac audio format handler iterates over the tracks
in an mp4 file. For each track it tries to get the audio-specific
configuration by calling mp4_get_decoder_config() and calls into faad
to check whether it is a valid configuration for the aac decoder.

We can simplify all this because the mp4 code already knows the type
of each track, albeit it does not expose this information yet. So
provide the new mp4_is_audio_track() helper and let the aac audio
format handler pick the first track for which this helper returns true.

As an additional benefit, we can remove the now unused
mp4_get_decoder_config().

23 months agomp4: Replace mp4ff prefix by mp4.
Andre Noll [Wed, 11 Aug 2021 16:31:55 +0000 (18:31 +0200)]
mp4: Replace mp4ff prefix by mp4.

The additional "ff" does not convey any useful information.

This patch was produced by running

sed -i 's/mp4ff/mp4/g' mp4.c mp4.h aac_afh.c

followed by

sed -i 's/MP4FF/MP4/g' aac_afh.c error.h

and the manual removal of the "ff" suffix in the error strings.

23 months agomp4: Rename mp4ff_open_read_metaonly() -> mp4ff_open_meta().
Andre Noll [Wed, 11 Aug 2021 14:56:57 +0000 (16:56 +0200)]
mp4: Rename mp4ff_open_read_metaonly() -> mp4ff_open_meta().

The old name is misleading because the returned file handle is by no
means opened read-only. In fact we call mp4ff_meta_update() on it,
which alters the file to store the modified metadata.

23 months agomp4: Introduce mp4ff_get_duration().
Andre Noll [Wed, 11 Aug 2021 13:41:37 +0000 (15:41 +0200)]
mp4: Introduce mp4ff_get_duration().

This allows us to get rid of an ugly hack in aac_afh.c where we peeked
at the audio-specific config structure to get the scaling factor which
was needed to compute the duration.

23 months agomp4: Prefer para_realloc() over plain realloc().
Andre Noll [Tue, 10 Aug 2021 17:08:41 +0000 (19:08 +0200)]
mp4: Prefer para_realloc() over plain realloc().

This allows us to skip the NULL check, which simplifies the code a bit.

23 months agomp4: Remove const qualifier from non-pointer function arguments.
Andre Noll [Tue, 10 Aug 2021 16:57:42 +0000 (18:57 +0200)]
mp4: Remove const qualifier from non-pointer function arguments.

In contrast to the pointer case, it's generally not very interesting
to know whether a function will modify the automatic variable which
corresponds to a non-pointer argument.

23 months agomp4: Whitespace and indentation cleanups for create_ilst().
Andre Noll [Mon, 9 Aug 2021 22:23:52 +0000 (00:23 +0200)]
mp4: Whitespace and indentation cleanups for create_ilst().

The only non-trivial cleanup is the reversed logic to reduce the
indentation of the code in the body of the for loop.

23 months agomp4: Remove pointless casts in create_ilst().
Andre Noll [Mon, 9 Aug 2021 22:19:56 +0000 (00:19 +0200)]
mp4: Remove pointless casts in create_ilst().

They have no effect because membuffer_write_int16_tag() takes a
unit16_t value anyway.

23 months agomp4: Reduce indentation of create_ilst().
Andre Noll [Mon, 9 Aug 2021 22:14:53 +0000 (00:14 +0200)]
mp4: Reduce indentation of create_ilst().

This function contained an indented block for no good reason. No real
change except that a few variables are exposed to the code below the
former block, but this is not a problem.

23 months agomp4: Kill pointless stricmp macro.
Andre Noll [Mon, 9 Aug 2021 22:12:31 +0000 (00:12 +0200)]
mp4: Kill pointless stricmp macro.

Just call strcasecmp() directly.

23 months agomp4: Make struct mp4ff opaque, hide struct mp4ff_track.
Andre Noll [Mon, 9 Aug 2021 22:06:48 +0000 (00:06 +0200)]
mp4: Make struct mp4ff opaque, hide struct mp4ff_track.

For the former, code outside of mp4.c only needs a pointer while the
latter does not need to be exposed at all.

Fix the indentation of the two declarations while at it.

23 months agomp4: Avoid typedefs for data structures.
Andre Noll [Mon, 9 Aug 2021 21:55:12 +0000 (23:55 +0200)]
mp4: Avoid typedefs for data structures.

They only obfuscate the type.

23 months agomp4: Fix trivial coding style issues in read_mvhd().
Andre Noll [Mon, 9 Aug 2021 21:31:38 +0000 (23:31 +0200)]
mp4: Fix trivial coding style issues in read_mvhd().

Some comments were located before the corresponding read statement,
some after, and some comments were indented weirdly.

No real change.

23 months agomp4: Prefer enums over defines.
Andre Noll [Mon, 9 Aug 2021 21:24:26 +0000 (23:24 +0200)]
mp4: Prefer enums over defines.

Just because the long list of macros clutters the taglist window
in vim.

23 months agomp4: Use read/write functions from portable_io.h.
Andre Noll [Mon, 9 Aug 2021 21:13:35 +0000 (23:13 +0200)]
mp4: Use read/write functions from portable_io.h.

This removes quite a bit of ugly code. In particular, atom_get_size()
is completely unnecessary and can be removed. Since there is no
function in portable_io.h to read a 24 bit integer, we have to add
read_u24_be().

23 months agomp4: Strip mp4ff_ prefix from static functions.
Andre Noll [Mon, 9 Aug 2021 20:11:48 +0000 (22:11 +0200)]
mp4: Strip mp4ff_ prefix from static functions.

This way it is clear from the name which functions are internal.

23 months agomp4: Introduce track helper variables.
Andre Noll [Mon, 9 Aug 2021 19:39:31 +0000 (21:39 +0200)]
mp4: Introduce track helper variables.

This reduces the line length and thus improves the readability of the
code.

23 months agomp4: Introduce min_body_size() helper.
Andre Noll [Mon, 9 Aug 2021 19:08:16 +0000 (21:08 +0200)]
mp4: Introduce min_body_size() helper.

This increases readability a lot and brings the line length of
mp4ff_parse_tag() down to a reasonable number of characters.

23 months agomp4: Remove useless casts in mp4ff_parse_tag().
Andre Noll [Mon, 9 Aug 2021 18:48:23 +0000 (20:48 +0200)]
mp4: Remove useless casts in mp4ff_parse_tag().

These casts have no effect because "len" and the second argument of
mp4ff_read_string() are of type uint32_t.

23 months agomp4: Rename overlong variable in mp4ff_parse_tag().
Andre Noll [Mon, 9 Aug 2021 18:42:17 +0000 (20:42 +0200)]
mp4: Rename overlong variable in mp4ff_parse_tag().

The new "parent" name is just as descriptive and saves a few
characters.

23 months agomp4: Remove always true condition in mp4ff_parse_tag().
Andre Noll [Mon, 9 Aug 2021 18:39:05 +0000 (20:39 +0200)]
mp4: Remove always true condition in mp4ff_parse_tag().

The parentheses are redundant, and "done" can never be true here.

23 months agomp4: Trivial cleanups of mp4ff_parse_tag().
Andre Noll [Mon, 9 Aug 2021 18:36:32 +0000 (20:36 +0200)]
mp4: Trivial cleanups of mp4ff_parse_tag().

The sprintf statement fits in a single line and the curly braces
are redundant.

23 months agomp4: Further reduce the indentation of mp4ff_parse_tag().
Andre Noll [Mon, 9 Aug 2021 18:27:28 +0000 (20:27 +0200)]
mp4: Further reduce the indentation of mp4ff_parse_tag().

Handle the easy cases first. Again, this patch looks unreviewable,
but it in essence it is only one large block that is shifted to the
left with no other changes.

23 months agomp4: Use a for-loop in mp4ff_parse_tag().
Andre Noll [Mon, 9 Aug 2021 18:22:16 +0000 (20:22 +0200)]
mp4: Use a for-loop in mp4ff_parse_tag().

This is equivalent but will allow us to further reduce the indentation
because we now can easily continue the loop.

23 months agomp4: Use para_strdup().
Andre Noll [Mon, 9 Aug 2021 18:05:10 +0000 (20:05 +0200)]
mp4: Use para_strdup().

Like malloc(), strdup() may fail. The current code does not always
check that. Using the paraslash wrapper avoids the issue and has the
additional benefit that para_strdup(NULL) does not segfault.

23 months agomp4: free(NULL) is OK.
Andre Noll [Mon, 9 Aug 2021 17:59:41 +0000 (19:59 +0200)]
mp4: free(NULL) is OK.

Also remove a initialization to NULL after the free() because it is
immediately followed by an assignment to the same variable.

23 months agomp4: Reduce indentation of mp4ff_parse_tag().
Andre Noll [Mon, 9 Aug 2021 17:50:25 +0000 (19:50 +0200)]
mp4: Reduce indentation of mp4ff_parse_tag().

Reverse the condition and continue with the next iteration
if "done" is true.

The patch is large, but it's trivial because the only change is that
one code block has been shifted to the left.

23 months agomp4: Use para_{c,m}alloc() to allocate memory.
Andre Noll [Mon, 9 Aug 2021 17:43:36 +0000 (19:43 +0200)]
mp4: Use para_{c,m}alloc() to allocate memory.

With mp4ff being internal we can afford to just abort if allocations
fail (which is what the para_ wrappers do). This allows us to simplify
the code quite a bit.

The code used to cast the pointer returned from malloc(). This is
unnecessary, so drop these casts.

23 months agomp4: Remove member moov_read of struct mp4ff.
Andre Noll [Mon, 9 Aug 2021 17:18:01 +0000 (19:18 +0200)]
mp4: Remove member moov_read of struct mp4ff.

It is set but never read.

23 months agomp4: Simplify and rename mp4ff_read_sample_getsize().
Andre Noll [Mon, 9 Aug 2021 17:10:46 +0000 (19:10 +0200)]
mp4: Simplify and rename mp4ff_read_sample_getsize().

The new code is much shorter. It is equivalent because the single
caller only checks whether the return value is less or equal then zero,
and does not use the return value in this case.

23 months agoaac: Let mp4ff_set_sample_position() return void.
Andre Noll [Mon, 9 Aug 2021 16:45:34 +0000 (18:45 +0200)]
aac: Let mp4ff_set_sample_position() return void.

The function used to always return zero.

23 months agoaac: Move declaration of mp4ff_set_sample_position() to mp4.h.
Andre Noll [Mon, 9 Aug 2021 16:43:44 +0000 (18:43 +0200)]
aac: Move declaration of mp4ff_set_sample_position() to mp4.h.

We used to provide the declaration of mp4ff_set_sample_position()
in aac_afh.c. With the internal mp4.c this is no longer necessary as
we may as well declare the function in mp4.h.

Remove the documentation since it has become stale.

23 months agomp4: Kill pointless macro membuffer_write_data.
Andre Noll [Mon, 9 Aug 2021 16:29:34 +0000 (18:29 +0200)]
mp4: Kill pointless macro membuffer_write_data.

All callers can instead call membuffer_write() directly.

23 months agomp4: Remove some dead code.
Andre Noll [Mon, 9 Aug 2021 16:22:35 +0000 (18:22 +0200)]
mp4: Remove some dead code.

Commented out code, pointless preprocessor directives and a condition
with empty body.

23 months agomp4: Make non-public functions static.
Andre Noll [Sun, 8 Aug 2021 20:09:28 +0000 (22:09 +0200)]
mp4: Make non-public functions static.

It's generally a good thing to reduce the scope to the compilation
unit where possible. Static functions also reduce the number of
symbols and help the compiler to optimize the generated code.

23 months agomp4: Wire it in and make it compile cleanly.
Andre Noll [Thu, 21 Oct 2021 17:09:59 +0000 (19:09 +0200)]
mp4: Wire it in and make it compile cleanly.

This switches to our local copy of libmp4ff. The configure script
now turns on support for the aac audio format even if libmp4ff is
not installed.

Some changes to mp4.c were necessary to silence warnings, most of
which are trivial. The single notably non-trivial change is the missing
initialization of chunk_sample and chunk in mp4ff_chunk_of_sample().

23 months agomp4: Run indent on mp4.c.
Andre Noll [Sun, 8 Aug 2021 19:37:27 +0000 (21:37 +0200)]
mp4: Run indent on mp4.c.

This transforms the newly added code to a form which matches the
paraslash coding style.

The patch was produced with

indent -kr -i8 -ts8 -sob -l80 -ss -bs

followed by a some manual cleanups.

23 months agoProvide our own copy of libmp4ff.
Andre Noll [Sun, 8 Aug 2021 19:13:41 +0000 (21:13 +0200)]
Provide our own copy of libmp4ff.

This library was removed from the faad repository in 2017. This
commit put everything we need from the libmp4ff code base into the
new mp4.c and mp4.h files. All content was taken unmodified from
commit 1cf5a505daf0 of the faad2 repo, the last commit that contains
the library.

The code needs a lot of cleanup and does not compile without warnings.
We commit it as-is to track what exactly has been copied from
libmp4ff. The new mp4.c has not been included into the build system,
however, so this commit has no effect yet.