[FFmpeg-devel] [PATCH] Playlist API

Michael Niedermayer michaelni
Fri Aug 7 22:23:42 CEST 2009


On Fri, Aug 07, 2009 at 11:52:54AM -0400, Ronald S. Bultje wrote:
> Hi Geza,
> 
> On Thu, Aug 6, 2009 at 7:10 PM, Geza Kovacs<gkovacs at mit.edu> wrote:
> > On 08/06/2009 03:43 PM, Ronald S. Bultje wrote:
> >> On Thu, Aug 6, 2009 at 6:36 PM, Geza Kovacs<gkovacs at mit.edu> wrote:
> >>> streams[0] is primary video stream
> >>> streams[1] is primary audio stream
> >>> streams[2] is primary subtitle stream
> >>> streams[3] is alternative video stream
> >>> streams[4] is alternative audio stream
> >>> streams[5] is alternative subtitle stream
> >>
> >> Well, that makes no sense. It's too limiting in all aspects.
> >
> > How so? libavcodec defines only 7 codec types; if streams[] were
> > dynamically allocated rather than arbitrarily limited to MAX_STREAMS,
> > the only issue I see with this is a small amount of memory being wasted
> > by dummy streams. Ideally some 2-dimensional level of organization would
> > be more elegant (something along the lines of separate arrays for
> > video_streams[], audio_streams[], and all other stream types), but given
> > that such 2-dimensional organization would break basically all existing
> > code I don't think there's a much better way to organize a
> > one-dimensional streams array.
> 
> Well, you conveniently cut the rest, but memory use is really not the
> only reason here. I think you're reading too much into an "open" or
> "defined" AVFormatContext, which is basically the same as limiting it
> into a certain corner. A subtitle file with 500 languages should still
> fit in an AVFormatContext (and it does not, at this moment). Many
> streams might not be audio, video or subtitle (which was only added
> recently). You should see it much more as an opaque structure where
> you can't really tell what's in it until you've actually started
> looking in it. Consider metadata: you don't know if the file ("mp3")
> will have a title/author because it might not have an ID3 tag. A m3u
> playlist of 20 mp3s might have 16 titles and 14 authors, but which
> belongs to which? how do you represent that in a AVFormatContext? What
> about time_base? etc.

titles and authors of specific parts can be represented by AVChapter.metadata


> 
> Don't get me wrong, your code to treat a playlist is invaluable and
> will be useful in some way. But it should *not* be the only (or
> primary) interface through which we access playlists. I'd rather see a
> new interface, developed by you or whoever, that we use for this.
> Here's some contraints for this new, to-be-designed AVPlayList
> interface:
> 
> - should roughly read as a AVFormatContext[]
> - you might want to think of addng an "offset" and "length" which are
> *not* the same as the media length - for editing purposes (or at least
> design it in such a way that that could be done)
> - the AVPlayList could be a DVD disc (containing per-title or so
> AVFormatContexts), a game resource file, a m3u file, an iTunes
> playlist, a video editor internal structure or something along those
> lines
> - XSPF has titles in the playlist; you might therefore want to add an
> additional metadata[] field to the AVPlayList. This is not the same as
> the AVFormatContext.metadata

> - you want to be able to represent a AVPlayList as a AVFormatContext
> under certain conditions, but you want to add the AVFormatContext
> constraints here: 1 set of metadata covering the whole media; 1 set of
> streams covering the whole media (this might imply that the demuxer
> should call decoder functions so that the raw output has the same
> codec across the whole stream; in case of video + audio, followed by
> audio-only, it might also include gaps for certain streams).

ehm, i think that is not such a good idea
either the AVFormatContexts API can handle it or not but trying to sequeeze
a square in a round hole does not seem like such a good idea.
I mean if we can make playlists available through AVFormatContext that would
be great but if that involved reencoding things to make them be in the same
codec then that really goes too far ... and it would open a really dark and
evil box (figuring out which streams are te right ones amongth other things
like which codec, width/height ... to use)

Currently it seems to me that playlists through AVFormatContext could only
be done by assigning each playlist entry a unique set of stream ids. This
would reuqire some changes in applications to handle but it at least is
providing the applications with well defined semantics and not some
continiusly changing values one cannot really depend upon


[...]

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Awnsering whenever a program halts or runs forever is
On a turing machine, in general impossible (turings halting problem).
On any real computer, always possible as a real computer has a finite number
of states N, and will either halt in less than N cycles or never halt.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: Digital signature
URL: <http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/attachments/20090807/2fbd79db/attachment.pgp>



More information about the ffmpeg-devel mailing list