summaryrefslogtreecommitdiffstats
path: root/gst/mpegvideoparse/mpegvideoparse.h
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@mad.scientist.com>2007-03-16 11:22:47 +0000
committerJan Schmidt <thaytan@mad.scientist.com>2007-03-16 11:22:47 +0000
commit1ff2df1d5f634ee445cd31c4f20f302ac414a48e (patch)
tree853528e552ae0be4f972b17d7a0b03492ac235ed /gst/mpegvideoparse/mpegvideoparse.h
parent22361a2dce0d0a1a7a126e3d23a5b35d18f87230 (diff)
downloadgst-plugins-bad-1ff2df1d5f634ee445cd31c4f20f302ac414a48e.tar.gz
gst-plugins-bad-1ff2df1d5f634ee445cd31c4f20f302ac414a48e.tar.bz2
gst-plugins-bad-1ff2df1d5f634ee445cd31c4f20f302ac414a48e.zip
gst/mpegvideoparse/: Move the MPEG specific byte parsing into the mpegpacketiser code.
Original commit message from CVS: * gst/mpegvideoparse/mpegpacketiser.c: (mpeg_util_find_start_code), (collect_packets), (set_par_from_dar), (set_fps_from_code), (mpeg_util_parse_extension_packet), (mpeg_util_parse_sequence_hdr), (mpeg_util_parse_picture_hdr): * gst/mpegvideoparse/mpegpacketiser.h: * gst/mpegvideoparse/mpegvideoparse.c: (mpegvideoparse_handle_sequence), (mpegvideoparse_handle_picture), (mpegvideoparse_drain_avail), (gst_mpegvideoparse_chain), (mpv_parse_sink_event), (plugin_init): * gst/mpegvideoparse/mpegvideoparse.h: Move the MPEG specific byte parsing into the mpegpacketiser code. Add parsing of picture types, that just feeds into a debug message for now. Fix some 64-bit format strings.
Diffstat (limited to 'gst/mpegvideoparse/mpegvideoparse.h')
-rw-r--r--gst/mpegvideoparse/mpegvideoparse.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/gst/mpegvideoparse/mpegvideoparse.h b/gst/mpegvideoparse/mpegvideoparse.h
index 99c6722c..c0212658 100644
--- a/gst/mpegvideoparse/mpegvideoparse.h
+++ b/gst/mpegvideoparse/mpegvideoparse.h
@@ -39,19 +39,6 @@ G_BEGIN_DECLS
typedef struct _MpegVideoParse MpegVideoParse;
typedef struct _MpegVideoParseClass MpegVideoParseClass;
-typedef struct MPEGSeqHdr
-{
- /* 0 for unknown, else 1 or 2 */
- guint8 mpeg_version;
-
- /* Pixel-Aspect Ratio from DAR code via set_par_from_dar */
- gint par_w, par_h;
- /* Width and Height of the video */
- gint width, height;
- /* Framerate */
- gint fps_n, fps_d;
-} MPEGSeqHdr;
-
struct _MpegVideoParse {
GstElement element;