codecparsers: mpegvideo: Change broken_gop to broken_link

This way we respect the standard naming
This commit is contained in:
Thibault Saunier 2011-09-12 13:41:41 -03:00
parent a31d541f07
commit 10215d26de
2 changed files with 3 additions and 3 deletions

View file

@ -745,7 +745,7 @@ gst_mpeg_video_parse_gop (GstMpegVideoGop * gop, guint8 * data,
READ_UINT8 (&br, gop->closed_gop, 1); READ_UINT8 (&br, gop->closed_gop, 1);
READ_UINT8 (&br, gop->broken_gop, 1); READ_UINT8 (&br, gop->broken_link, 1);
return TRUE; return TRUE;

View file

@ -314,7 +314,7 @@ struct _GstMpegVideoPictureExt
* @second: Second (0-59) * @second: Second (0-59)
* @frame: Frame (0-59) * @frame: Frame (0-59)
* @closed_gop: Closed Gop * @closed_gop: Closed Gop
* @broken_gop: Broken Gop * @broken_link: Broken link
* *
* The Mpeg Video Group of Picture structure. * The Mpeg Video Group of Picture structure.
*/ */
@ -325,7 +325,7 @@ struct _GstMpegVideoGop
guint8 hour, minute, second, frame; guint8 hour, minute, second, frame;
guint8 closed_gop; guint8 closed_gop;
guint8 broken_gop; guint8 broken_link;
}; };
/** /**