summaryrefslogtreecommitdiff
path: root/libavformat/rawdec.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-26 14:07:04 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-10-26 14:24:57 +0200
commit507f2940ccdcedf2fdc064c5fb6022b60bace8ca (patch)
treea367ef88e7671ef3155d52bf0f8137fc1c2b0339 /libavformat/rawdec.h
parent9f36ec6aa936515a703f6d7ff32826aa28684f1e (diff)
parent1b891d17c531e8a63c2974aab4bf997ce70746f3 (diff)
downloadffmpeg-507f2940ccdcedf2fdc064c5fb6022b60bace8ca.tar.gz
Merge commit '1b891d17c531e8a63c2974aab4bf997ce70746f3'
* commit '1b891d17c531e8a63c2974aab4bf997ce70746f3': avconv: fix bitrate report when writing to /dev/null avfilter: fix graphparser memleaks on error paths rawdec: remove ff_raw_read_header pcmdec: remove dependency from rawdec g722: refactor out of rawdec.c rawvideo: use a specific read_header Conflicts: ffmpeg.c libavformat/Makefile libavformat/rawdec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rawdec.h')
-rw-r--r--libavformat/rawdec.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavformat/rawdec.h b/libavformat/rawdec.h
index 5812e5019b..d978295ce2 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);