summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorritsuka <[email protected]>2009-01-11 08:51:20 +0000
committerritsuka <[email protected]>2009-01-11 08:51:20 +0000
commit93a7f537451f43058b6663cf7a9ab214e06cfeb1 (patch)
tree283b54c295973010aa710e35999c8050144a21ed
parent58ad43b381f43e83a05a4307e2524266ff60ea37 (diff)
Remove some unused variables
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2073 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--libhb/muxmp4.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/libhb/muxmp4.c b/libhb/muxmp4.c
index 9f62a2a2f..bd54b11ce 100644
--- a/libhb/muxmp4.c
+++ b/libhb/muxmp4.c
@@ -9,8 +9,6 @@
#include "hb.h"
-void AddIPodUUID(MP4FileHandle, MP4TrackId);
-
struct hb_mux_object_s
{
HB_MUX_COMMON;
@@ -57,7 +55,6 @@ static int MP4Init( hb_mux_object_t * m )
hb_audio_t * audio;
hb_mux_data_t * mux_data;
int i;
- uint16_t language_code;
/* Flags for enabling/disabling tracks in an MP4. */
typedef enum { TRACK_DISABLED = 0x0, TRACK_ENABLED = 0x1, TRACK_IN_MOVIE = 0x2, TRACK_IN_PREVIEW = 0x4, TRACK_IN_POSTER = 0x8} track_header_flags;
@@ -203,13 +200,6 @@ static int MP4Init( hb_mux_object_t * m )
/* add the audio tracks */
for( i = 0; i < hb_list_count( title->list_audio ); i++ )
{
- static uint8_t reserved2[16] = {
- 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x02, 0x00, 0x10,
- 0x00, 0x00, 0x00, 0x00,
- };
-
audio = hb_list_item( title->list_audio, i );
mux_data = malloc( sizeof( hb_mux_data_t ) );
audio->priv.mux_data = mux_data;