mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
ext/mpeg2enc/gstmpeg2encoptions.*: Expose the additional MPEG HDTV format profiles available in latest mjpegtools ver...
Original commit message from CVS: * ext/mpeg2enc/gstmpeg2encoptions.cc: * ext/mpeg2enc/gstmpeg2encoptions.hh: Expose the additional MPEG HDTV format profiles available in latest mjpegtools version.
This commit is contained in:
parent
4b2e3dd210
commit
a1b7dde069
3 changed files with 24 additions and 10 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2008-06-28 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
|
||||||
|
|
||||||
|
* ext/mpeg2enc/gstmpeg2encoptions.cc:
|
||||||
|
* ext/mpeg2enc/gstmpeg2encoptions.hh:
|
||||||
|
Expose the additional MPEG HDTV format profiles available in latest
|
||||||
|
mjpegtools version.
|
||||||
|
|
||||||
2008-06-28 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
2008-06-28 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||||
|
|
||||||
* gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace2_src_query):
|
* gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace2_src_query):
|
||||||
|
|
|
@ -88,16 +88,22 @@ gst_mpeg2enc_format_get_type (void)
|
||||||
|
|
||||||
if (!mpeg2enc_format_type) {
|
if (!mpeg2enc_format_type) {
|
||||||
static const GEnumValue mpeg2enc_formats[] = {
|
static const GEnumValue mpeg2enc_formats[] = {
|
||||||
{0, "Generic MPEG-1", "0"},
|
{MPEG_FORMAT_MPEG1, "Generic MPEG-1", "0"},
|
||||||
{1, "Standard VCD", "1"},
|
{MPEG_FORMAT_VCD, "Standard VCD", "1"},
|
||||||
{2, "User VCD", "2"},
|
{MPEG_FORMAT_VCD_NSR, "User VCD", "2"},
|
||||||
{3, "Generic MPEG-2", "3"},
|
{MPEG_FORMAT_MPEG2, "Generic MPEG-2", "3"},
|
||||||
{4, "Standard SVCD", "4"},
|
{MPEG_FORMAT_SVCD, "Standard SVCD", "4"},
|
||||||
{5, "User SVCD", "5"},
|
{MPEG_FORMAT_SVCD_NSR, "User SVCD", "5"},
|
||||||
{6, "VCD Stills sequences", "6"},
|
{MPEG_FORMAT_VCD_STILL, "VCD Stills sequences", "6"},
|
||||||
{7, "SVCD Stills sequences", "7"},
|
{MPEG_FORMAT_SVCD_STILL, "SVCD Stills sequences", "7"},
|
||||||
{8, "DVD MPEG-2 for dvdauthor", "8"},
|
{MPEG_FORMAT_DVD_NAV, "DVD MPEG-2 for dvdauthor", "8"},
|
||||||
{9, "DVD MPEG-2", "9"},
|
{MPEG_FORMAT_DVD, "DVD MPEG-2", "9"},
|
||||||
|
#ifdef MPEG_FORMAT_ATSC1080i
|
||||||
|
{MPEG_FORMAT_ATSC480i, "ATSC 480i", "10"},
|
||||||
|
{MPEG_FORMAT_ATSC480p, "ATSC 480p", "11"},
|
||||||
|
{MPEG_FORMAT_ATSC720p, "ATSC 720p", "12"},
|
||||||
|
{MPEG_FORMAT_ATSC1080i, "ATSC 1080i", "13"},
|
||||||
|
#endif
|
||||||
{0, NULL, NULL},
|
{0, NULL, NULL},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
#define __GST_MPEG2ENCOPTIONS_H__
|
#define __GST_MPEG2ENCOPTIONS_H__
|
||||||
|
|
||||||
#include <glib-object.h>
|
#include <glib-object.h>
|
||||||
|
#include <format_codes.h>
|
||||||
#include <mpeg2encoptions.hh>
|
#include <mpeg2encoptions.hh>
|
||||||
|
|
||||||
class GstMpeg2EncOptions : public MPEG2EncOptions {
|
class GstMpeg2EncOptions : public MPEG2EncOptions {
|
||||||
|
|
Loading…
Reference in a new issue