summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorsaintdev <[email protected]>2007-04-26 07:57:59 +0000
committersaintdev <[email protected]>2007-04-26 07:57:59 +0000
commit4c84cb2ff519e4392ea8af0168b57d4ef5d1c4fd (patch)
tree717ef22b5d8de11d401d81a76fe2d378a185790a /test
parentc9fa0ecad7aee37b787cd09fc49c3d13fb480a84 (diff)
Various fixes:
- Include parsecsv.c in the Jamfile so we can compile the CLI with Jam - Quiet some compiler warnings in parsecsv.{c,h} - Check some return values in muxmp4.c and encfaac.c and die gracefully if there is a problem. - Correctly set the number of audio channels in the stsd atom. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@552 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r--test/parsecsv.c3
-rw-r--r--test/parsecsv.h2
2 files changed, 2 insertions, 3 deletions
diff --git a/test/parsecsv.c b/test/parsecsv.c
index f0a8a1a18..bfc6a2783 100644
--- a/test/parsecsv.c
+++ b/test/parsecsv.c
@@ -140,7 +140,6 @@ static uint16_t hb_parse_character( hb_csv_file_t * file )
{
int byte;
uint16_t c;
- int read_result;
int need_char = 1;
if( file == NULL )
@@ -211,4 +210,4 @@ static void hb_trim_end( char *text )
{
text[i] = '\0';
}
-} \ No newline at end of file
+}
diff --git a/test/parsecsv.h b/test/parsecsv.h
index 6247ddb44..f3e27a751 100644
--- a/test/parsecsv.h
+++ b/test/parsecsv.h
@@ -33,4 +33,4 @@ void hb_close_csv_file( hb_csv_file_t *file );
/* Parse CSV Cells */
hb_csv_cell_t *hb_read_next_cell( hb_csv_file_t *file );
-void hb_dispose_cell( hb_csv_cell_t *cell ); \ No newline at end of file
+void hb_dispose_cell( hb_csv_cell_t *cell );