Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-04-07 | mxfdemux: Don't use invalid buffer offsets, instead assume offset == 0 | Sebastian Dröge | 1 | -1/+2 | |
2009-03-26 | mxf: Use mxf_u{l,uid}_is_equal() and friends instead of memcmp() | Sebastian Dröge | 1 | -1/+1 | |
2009-03-26 | mxf: Differentiate between UL and UUID | Sebastian Dröge | 1 | -9/+4 | |
2009-03-26 | mxf: Source files and #include cleanup | Sebastian Dröge | 1 | -2/+1 | |
2009-03-21 | mxfdemux: Error out directly if pushing a packet downstream failed | Sebastian Dröge | 1 | -1/+1 | |
2009-03-18 | mxfdemux: Fix build on GLib < 2.16 some more | Jan Schmidt | 1 | -17/+26 | |
2009-03-16 | mxf: Replace g_hash_table_get_values with code working with glib 2.6. | Zaheer Merali | 1 | -5/+10 | |
Fixes #575565 | |||||
2009-03-06 | mxfdemux: Store and use the seqnum of the currently running segment everywhere | Sebastian Dröge | 1 | -25/+85 | |
2009-02-21 | mxfdemux: Add read-only property to get the structural metadata | Sebastian Dröge | 1 | -1/+24 | |
2009-02-21 | mxfdemux: Post structural metadata tree as tag on the bus | Sebastian Dröge | 1 | -1/+11 | |
This will later be used to keep the structural metadata when remuxing an MXF file and can also be used in Pitivi for example to know the file structure and to select what should be used and played. | |||||
2009-02-21 | mxfdemux: Only store the main descriptor in source packages | Sebastian Dröge | 1 | -2/+2 | |
For the tracks we still resolve the descriptors but the source package only contains the descriptor it really references instead of all subdescriptors of multiple descriptors. This makes it easier later to serialize the structural metadata again. | |||||
2009-02-21 | mxfdemux: Set free'd memory to NULL to prevent a double free later in some cases | Sebastian Dröge | 1 | -0/+1 | |
2009-02-21 | mxfdemux: Don't use generic metadata parsers for unknown metadata, the ↵ | Sebastian Dröge | 1 | -2/+3 | |
results are useless anyway | |||||
2009-02-12 | mxfdemux: Also include the picture/sound/data essence coding in the unknown caps | Sebastian Dröge | 1 | -3/+31 | |
2009-02-12 | mxfdemux: Update TODO, we should support the drop-frame property of timecode ↵ | Sebastian Dröge | 1 | -0/+1 | |
tracks | |||||
2009-02-12 | mxfdemux: Update TODO | Sebastian Dröge | 1 | -2/+0 | |
2009-02-09 | mxfdemux: After pulling the footer metadata reset essence track positions to 0 | Sebastian Dröge | 1 | -0/+14 | |
2009-02-09 | mxfdemux: When trying to find an essence track position try to find ↵ | Sebastian Dröge | 1 | -8/+8 | |
position+1 too By searching for the following position we will add the complete generic container (i.e. all tracks) at the same position to the index which should make finding positions for more than one track a bit faster. | |||||
2009-02-09 | mxfdemux: For new essence tracks only set the position to 0 if it starts in ↵ | Sebastian Dröge | 1 | -0/+6 | |
the current partition | |||||
2009-02-09 | mxfdemux: Check if the length of the src/essence track arrays are 0, not the ↵ | Sebastian Dröge | 1 | -59/+33 | |
array itself | |||||
2009-02-09 | mxfdemux: Make sure that the srcpad and essence track arrays always exist | Sebastian Dröge | 1 | -19/+21 | |
2009-02-09 | mxfdemux: Change some GST_ERRORs to something less critical | Sebastian Dröge | 1 | -2/+2 | |
2009-02-09 | mxfdemux: Only go into EOS and send segment-done after all tracks are finished | Sebastian Dröge | 1 | -2/+16 | |
2009-02-09 | mxfdemux: Update TODO | Sebastian Dröge | 1 | -1/+1 | |
2009-02-09 | mxfdemux: Fix seeking to the end of file | Sebastian Dröge | 1 | -17/+11 | |
When seeking to a position where no new offset can be found or after the end of a track don't set the EOS flag to TRUE as we don't (and can't) push EOS downstream then. Instead set the current essence track position to then end of the essence track and let the loop or chain function set everything to EOS and push EOS downstream. Also restart the pad's task if resolving metadata failed (playback will continue as before) and return FALSE from the seek if no new offset could be found. | |||||
2009-02-08 | mxfdemux: Fix last_stop calculation when seeking | Sebastian Dröge | 1 | -9/+13 | |
2009-02-08 | mxfdemux: Correctly implement timestamping in all cases | Sebastian Dröge | 1 | -21/+45 | |
When the material package track and source package track edit rate are different the source package track edit rate applies to the stored essence and the material track edit rate only applies to the values in the track's sequence and components. | |||||
2009-02-08 | mxfdemux: Correctly handle DURATION queries with a negative duration | Sebastian Dröge | 1 | -2/+5 | |
2009-02-08 | mxfdemux: When changing to the component after the last component update the ↵ | Sebastian Dröge | 1 | -4/+9 | |
essence track position | |||||
2009-02-08 | mxfdemux: Small cleanup and an additional check | Sebastian Dröge | 1 | -2/+6 | |
Update TODO list, reduce size of a stack allocated string and don't allow essence tracks with an invalid edit rate | |||||
2009-02-07 | mxfdemux: Add support for non-standard Avid MXF files containing DNxHD essence | Sebastian Dröge | 1 | -3/+6 | |
Avid uses a custom essence container UL and custom essence element keys that are fortunately compatible with the generic container essence elements. Partially fixes bug #561922. | |||||
2009-02-07 | mxfdemux: Make essence track creation a bit more robust against broken files | Sebastian Dröge | 1 | -2/+17 | |
Some files contain multiple tracks with the same track number but different track id inside the same source package. This is invalid and we simply ignore the second and following of such traacks now instead of overwriting the information of the first one. | |||||
2009-02-06 | mxfdemux: For tracks with no known mapping use dummy caps | Sebastian Dröge | 1 | -5/+20 | |
2009-02-06 | mxfdemux: Don't remove invalid new essence track twice from the GPtrArray | Sebastian Dröge | 1 | -2/+0 | |
2009-02-06 | mxfdemux: Handle some more special cases when setting the position when seeking | Sebastian Dröge | 1 | -0/+13 | |
2009-02-06 | mxfdemux: Adjust last_stop to the last keyframe when seeking | Sebastian Dröge | 1 | -3/+9 | |
2009-02-06 | mxfdemux: Fix logic for finding the previous keyframe | Sebastian Dröge | 1 | -6/+9 | |
2009-02-05 | mxfdemux: Protect the metadata with a lock against concurrent access | Sebastian Dröge | 1 | -20/+60 | |
2009-02-04 | Update TODO | Sebastian Dröge | 1 | -2/+4 | |
2009-02-04 | Post an UMID tag with the current package's UMID | Sebastian Dröge | 1 | -0/+5 | |
2009-02-04 | Reset the current partition after seeking and NEWSEGMENT events | Sebastian Dröge | 1 | -1/+6 | |
2009-02-04 | In push mode play all remaining parts of the file on EOS if there are any | Sebastian Dröge | 1 | -13/+72 | |
2009-02-04 | Add property to set the maximum allowed time difference between tracks | Sebastian Dröge | 1 | -3/+18 | |
2009-02-04 | Always set the current package, not only when it was changed | Sebastian Dröge | 1 | -1/+1 | |
This is necessary as the current package link will be set to NULL when updated metadata is parsed and should be set here again. | |||||
2009-02-04 | Try to resolve all synchronization issues, not only the first | Sebastian Dröge | 1 | -35/+33 | |
2009-02-04 | Remove some checks that will always be TRUE | Sebastian Dröge | 1 | -26/+19 | |
2009-02-02 | Cleanup playback package selection and notify about the current package | Sebastian Dröge | 1 | -15/+21 | |
2009-02-02 | Update tags properly, especially on component switch | Sebastian Dröge | 1 | -5/+18 | |
2009-02-02 | Error out if no pads could be created | Sebastian Dröge | 1 | -0/+3 | |
2009-02-02 | Resolve metadata and update tracks if necessary before seeking | Sebastian Dröge | 1 | -4/+6 | |