mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
codecparsers: mpegvideo: Change broken_gop to broken_link
This way we respect the standard naming
This commit is contained in:
parent
a31d541f07
commit
10215d26de
2 changed files with 3 additions and 3 deletions
|
@ -745,7 +745,7 @@ gst_mpeg_video_parse_gop (GstMpegVideoGop * gop, guint8 * data,
|
|||
|
||||
READ_UINT8 (&br, gop->closed_gop, 1);
|
||||
|
||||
READ_UINT8 (&br, gop->broken_gop, 1);
|
||||
READ_UINT8 (&br, gop->broken_link, 1);
|
||||
|
||||
return TRUE;
|
||||
|
||||
|
|
|
@ -314,7 +314,7 @@ struct _GstMpegVideoPictureExt
|
|||
* @second: Second (0-59)
|
||||
* @frame: Frame (0-59)
|
||||
* @closed_gop: Closed Gop
|
||||
* @broken_gop: Broken Gop
|
||||
* @broken_link: Broken link
|
||||
*
|
||||
* The Mpeg Video Group of Picture structure.
|
||||
*/
|
||||
|
@ -325,7 +325,7 @@ struct _GstMpegVideoGop
|
|||
guint8 hour, minute, second, frame;
|
||||
|
||||
guint8 closed_gop;
|
||||
guint8 broken_gop;
|
||||
guint8 broken_link;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue