Commit dc265e2b authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/rawdec: Make ff_raw_data_read_header() non static

This is similar to the raw video read header
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 58721388
......@@ -92,7 +92,7 @@ fail:
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);
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_data_read_header(AVFormatContext *s);
#define FF_RAWVIDEO_DEMUXER_CLASS(name)\
static const AVClass name ## _demuxer_class = {\
.class_name = #name " demuxer",\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment