summaryrefslogtreecommitdiffstats
path: root/libmpdemux/parse_mp4.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-07-07 02:26:13 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-07-07 02:34:35 +0300
commit0eb321bf2c1cc0e048faff26a01f86cdd3ec254f (patch)
tree71cb9bd9ed121156d3382066c0722c73189afe04 /libmpdemux/parse_mp4.c
parent6d908205fbadbdf7ccdc6c5e0eb918f0b43f16e0 (diff)
downloadmpv-0eb321bf2c1cc0e048faff26a01f86cdd3ec254f.tar.bz2
mpv-0eb321bf2c1cc0e048faff26a01f86cdd3ec254f.tar.xz
Remove trailing whitespace from most files
Diffstat (limited to 'libmpdemux/parse_mp4.c')
-rw-r--r--libmpdemux/parse_mp4.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libmpdemux/parse_mp4.c b/libmpdemux/parse_mp4.c
index c9f9ff2e80..2a5ee3a4af 100644
--- a/libmpdemux/parse_mp4.c
+++ b/libmpdemux/parse_mp4.c
@@ -55,11 +55,11 @@ int mp4_parse_esds(unsigned char *data, int datalen, esds_t *esds) {
uint16_t len;
#ifdef MP4_DUMPATOM
{int i;
- printf("ESDS Dump (%dbyte):\n", datalen);
+ printf("ESDS Dump (%dbyte):\n", datalen);
for(i = 0; i < datalen; i++)
printf("%02X ", data[i]);
printf("\nESDS Dumped\n");}
-#endif
+#endif
memset(esds, 0, sizeof(esds_t));
esds->version = stream_read_char(s);
@@ -127,7 +127,7 @@ int mp4_parse_esds(unsigned char *data, int datalen, esds_t *esds) {
}
/* read length */
- esds->decoderConfigLen = len = mp4_read_descr_len(s);
+ esds->decoderConfigLen = len = mp4_read_descr_len(s);
esds->decoderConfig = malloc(esds->decoderConfigLen);
if (esds->decoderConfig) {
@@ -170,4 +170,3 @@ void mp4_free_esds(esds_t *esds) {
#undef freereturn
#undef MP4_DL
-