xref: /haiku/src/add-ons/media/plugins/ffmpeg/DemuxerTable.h (revision da4dbfa47a47beb355289f3dd685797cee69ab77)
1 /*
2  * Copyright 2009 Stephan Aßmus <superstippi@gmx.de>
3  * All rights reserved. Distributed under the terms of the MIT license.
4  */
5 #ifndef DEMUXER_TABLE_H
6 #define DEMUXER_TABLE_H
7 
8 
9 #include <MediaDefs.h>
10 
11 
12 struct AVInputFormat;
13 
14 const media_file_format* demuxer_format_for(const AVInputFormat* format);
15 
16 
17 #endif // DEMUXER_TABLE_H
18