summaryrefslogtreecommitdiff
path: root/libavcodec/parser.h
diff options
context:
space:
mode:
authorRafaël Carré <funman@videolan.org>2012-02-08 19:34:37 -0500
committerDiego Biurrun <diego@biurrun.de>2012-02-10 15:48:52 +0100
commitb24aaabd44d68c6fafbfc476d1b70cc7ff8138ca (patch)
treed7227f8fc9979e805ad62bda517d6a8b22907467 /libavcodec/parser.h
parent797639dcfdbd672d55e79c6a679cc1e58f863277 (diff)
remove ParseContext1
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/parser.h')
-rw-r--r--libavcodec/parser.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/libavcodec/parser.h b/libavcodec/parser.h
index 1e85ae4051..024b487bac 100644
--- a/libavcodec/parser.h
+++ b/libavcodec/parser.h
@@ -39,26 +39,12 @@ typedef struct ParseContext{
struct MpegEncContext;
-typedef struct ParseContext1{
- ParseContext pc;
-/* XXX/FIXME PC1 vs. PC */
- /* MPEG-2-specific */
- AVRational frame_rate;
- int progressive_sequence;
- int width, height;
-
- /* XXX: suppress that, needed by MPEG-4 */
- struct MpegEncContext *enc;
- int first_picture;
-} ParseContext1;
-
#define END_NOT_FOUND (-100)
int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size);
int ff_mpeg4video_split(AVCodecContext *avctx, const uint8_t *buf,
int buf_size);
void ff_parse_close(AVCodecParserContext *s);
-void ff_parse1_close(AVCodecParserContext *s);
/**
* Fetch timestamps for a specific byte within the current access unit.