avformat/rawdec: Make ff_raw_data_read_header() non static
This is similar to the raw video read header Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
58721388b8
commit
dc265e2b6b
@ -92,7 +92,7 @@ fail:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ff_raw_data_read_header(AVFormatContext *s)
|
int ff_raw_data_read_header(AVFormatContext *s)
|
||||||
{
|
{
|
||||||
AVStream *st = avformat_new_stream(s, NULL);
|
AVStream *st = avformat_new_stream(s, NULL);
|
||||||
if (!st)
|
if (!st)
|
||||||
|
@ -41,6 +41,8 @@ int ff_raw_audio_read_header(AVFormatContext *s);
|
|||||||
|
|
||||||
int ff_raw_video_read_header(AVFormatContext *s);
|
int ff_raw_video_read_header(AVFormatContext *s);
|
||||||
|
|
||||||
|
int ff_raw_data_read_header(AVFormatContext *s);
|
||||||
|
|
||||||
#define FF_RAWVIDEO_DEMUXER_CLASS(name)\
|
#define FF_RAWVIDEO_DEMUXER_CLASS(name)\
|
||||||
static const AVClass name ## _demuxer_class = {\
|
static const AVClass name ## _demuxer_class = {\
|
||||||
.class_name = #name " demuxer",\
|
.class_name = #name " demuxer",\
|
||||||
|
Loading…
x
Reference in New Issue
Block a user