diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2012-10-24 19:53:32 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2012-10-25 14:05:13 +0200 |
commit | 587874ef1c94a9b863d2f2db0e5d341e086ee232 (patch) | |
tree | 1b3c1d3275954c7289410b1ff2a618356ccdf869 /libavformat/rawdec.h | |
parent | 2ef4d586d6352a69c0669d53ce1035eb7d8db0e8 (diff) | |
download | ffmpeg-587874ef1c94a9b863d2f2db0e5d341e086ee232.tar.gz |
rawdec: remove ff_raw_read_header
It is not used anymore and is a kludge.
Diffstat (limited to 'libavformat/rawdec.h')
-rw-r--r-- | libavformat/rawdec.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavformat/rawdec.h b/libavformat/rawdec.h index 4cce2cf901..a5487784c9 100644 --- a/libavformat/rawdec.h +++ b/libavformat/rawdec.h @@ -26,12 +26,6 @@ #include "libavutil/log.h" #include "libavutil/opt.h" -typedef struct RawAudioDemuxerContext { - AVClass *class; - int sample_rate; - int channels; -} RawAudioDemuxerContext; - typedef struct FFRawVideoDemuxerContext { const AVClass *class; /**< Class for private options. */ char *video_size; /**< String describing video size, set by a private option. */ @@ -41,8 +35,6 @@ typedef struct FFRawVideoDemuxerContext { extern const AVOption ff_rawvideo_options[]; -int ff_raw_read_header(AVFormatContext *s); - int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt); int ff_raw_audio_read_header(AVFormatContext *s); |