Hi,

I'm trying to see if it is possible to store a variable name in a variable, for later use. I guess the closest thing I've seen to this might be PERLs hash variables.

Here's the issue...

I have a big file that, for all intents and purposes, is structured similar to an mp4 container. Just a bunch of boxes inside boxes. Like mp4 container, not all box are mandatory.

I would like to store the root box names in a struct array. Then when processing the individual root boxes, create another struct array using the name of the root box as the variable name.

Is this possible at all? My searches really don't come up with anything useful (mostly because the search terms I use are too basic, and I don't know what proper term(s) to search for).

Ty.