diff options
| author | phintuka <phintuka> | 2011-06-19 22:13:34 +0000 |
|---|---|---|
| committer | phintuka <phintuka> | 2011-06-19 22:13:34 +0000 |
| commit | 4e0db87667063b85afbe5c7878f6e473d910c59d (patch) | |
| tree | e71d17817292c59d87e72f3ceba72fcb1a097349 | |
| parent | 56b4a9bc72bef04a74629a6ba780c4fe92495156 (diff) | |
| download | xineliboutput-4e0db87667063b85afbe5c7878f6e473d910c59d.tar.gz xineliboutput-4e0db87667063b85afbe5c7878f6e473d910c59d.tar.bz2 | |
Cosmetics: reordered functions
| -rw-r--r-- | xine/BluRay/decode_spuhdmv.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/xine/BluRay/decode_spuhdmv.c b/xine/BluRay/decode_spuhdmv.c index d6d32e94..a740f684 100644 --- a/xine/BluRay/decode_spuhdmv.c +++ b/xine/BluRay/decode_spuhdmv.c @@ -701,6 +701,14 @@ typedef struct spuhdmv_decoder_s { } spuhdmv_decoder_t; +static void free_objs(spuhdmv_decoder_t *this) +{ + LIST_DESTROY (this->cluts, free); + LIST_DESTROY (this->objects, free_subtitle_object); + LIST_DESTROY (this->windows, free); + LIST_DESTROY (this->segments, free_presentation_segment); +} + static int decode_palette(spuhdmv_decoder_t *this) { /* decode */ @@ -910,14 +918,6 @@ static void update_overlays(spuhdmv_decoder_t *this) } } -static void free_objs(spuhdmv_decoder_t *this) -{ - LIST_DESTROY (this->cluts, free); - LIST_DESTROY (this->objects, free_subtitle_object); - LIST_DESTROY (this->windows, free); - LIST_DESTROY (this->segments, free_presentation_segment); -} - static void decode_segment(spuhdmv_decoder_t *this) { XINE_HDMV_TRACE("*** new segment, pts %010"PRId64": 0x%02x (%8d bytes)\n", |
