Commit d715e985 authored by aurel's avatar aurel

matroskadec: cosmetics: consistent style for functions declaration

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14593 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6b93370c
...@@ -461,8 +461,7 @@ static EbmlSyntax matroska_clusters[] = { ...@@ -461,8 +461,7 @@ static EbmlSyntax matroska_clusters[] = {
* The opposite isn't done - that's auto-done using master * The opposite isn't done - that's auto-done using master
* element reading. * element reading.
*/ */
static int static int ebml_read_element_level_up(MatroskaDemuxContext *matroska)
ebml_read_element_level_up (MatroskaDemuxContext *matroska)
{ {
ByteIOContext *pb = matroska->ctx->pb; ByteIOContext *pb = matroska->ctx->pb;
offset_t pos = url_ftell(pb); offset_t pos = url_ftell(pb);
...@@ -490,10 +489,8 @@ ebml_read_element_level_up (MatroskaDemuxContext *matroska) ...@@ -490,10 +489,8 @@ ebml_read_element_level_up (MatroskaDemuxContext *matroska)
* number. * number.
* Returns: num. of bytes read. < 0 on error. * Returns: num. of bytes read. < 0 on error.
*/ */
static int static int ebml_read_num(MatroskaDemuxContext *matroska,
ebml_read_num (MatroskaDemuxContext *matroska, int max_size, uint64_t *number)
int max_size,
uint64_t *number)
{ {
ByteIOContext *pb = matroska->ctx->pb; ByteIOContext *pb = matroska->ctx->pb;
int len_mask = 0x80, read = 1, n = 1; int len_mask = 0x80, read = 1, n = 1;
...@@ -540,9 +537,7 @@ ebml_read_num (MatroskaDemuxContext *matroska, ...@@ -540,9 +537,7 @@ ebml_read_num (MatroskaDemuxContext *matroska,
* Read: the element content data ID. * Read: the element content data ID.
* Return: the number of bytes read or < 0 on error. * Return: the number of bytes read or < 0 on error.
*/ */
static int static int ebml_read_element_id(MatroskaDemuxContext *matroska, uint32_t *id)
ebml_read_element_id (MatroskaDemuxContext *matroska,
uint32_t *id)
{ {
int read; int read;
uint64_t total; uint64_t total;
...@@ -565,9 +560,8 @@ ebml_read_element_id (MatroskaDemuxContext *matroska, ...@@ -565,9 +560,8 @@ ebml_read_element_id (MatroskaDemuxContext *matroska,
* Read: element content length. * Read: element content length.
* Return: the number of bytes read or < 0 on error. * Return: the number of bytes read or < 0 on error.
*/ */
static int static int ebml_read_element_length(MatroskaDemuxContext *matroska,
ebml_read_element_length (MatroskaDemuxContext *matroska, uint64_t *length)
uint64_t *length)
{ {
/* clear cache since we're now beyond that data point */ /* clear cache since we're now beyond that data point */
matroska->peek_id = 0; matroska->peek_id = 0;
...@@ -580,9 +574,7 @@ ebml_read_element_length (MatroskaDemuxContext *matroska, ...@@ -580,9 +574,7 @@ ebml_read_element_length (MatroskaDemuxContext *matroska,
* Seek to a given offset. * Seek to a given offset.
* 0 is success, -1 is failure. * 0 is success, -1 is failure.
*/ */
static int static int ebml_read_seek(MatroskaDemuxContext *matroska, offset_t offset)
ebml_read_seek (MatroskaDemuxContext *matroska,
offset_t offset)
{ {
ByteIOContext *pb = matroska->ctx->pb; ByteIOContext *pb = matroska->ctx->pb;
...@@ -596,10 +588,7 @@ ebml_read_seek (MatroskaDemuxContext *matroska, ...@@ -596,10 +588,7 @@ ebml_read_seek (MatroskaDemuxContext *matroska,
* Read the next element as an unsigned int. * Read the next element as an unsigned int.
* 0 is success, < 0 is failure. * 0 is success, < 0 is failure.
*/ */
static int static int ebml_read_uint(ByteIOContext *pb, int size, uint64_t *num)
ebml_read_uint (ByteIOContext *pb,
int size,
uint64_t *num)
{ {
int n = 0; int n = 0;
...@@ -618,10 +607,7 @@ ebml_read_uint (ByteIOContext *pb, ...@@ -618,10 +607,7 @@ ebml_read_uint (ByteIOContext *pb,
* Read the next element as a float. * Read the next element as a float.
* 0 is success, < 0 is failure. * 0 is success, < 0 is failure.
*/ */
static int static int ebml_read_float(ByteIOContext *pb, int size, double *num)
ebml_read_float (ByteIOContext *pb,
int size,
double *num)
{ {
if (size == 4) { if (size == 4) {
*num= av_int2flt(get_be32(pb)); *num= av_int2flt(get_be32(pb));
...@@ -637,10 +623,7 @@ ebml_read_float (ByteIOContext *pb, ...@@ -637,10 +623,7 @@ ebml_read_float (ByteIOContext *pb,
* Read the next element as an ASCII string. * Read the next element as an ASCII string.
* 0 is success, < 0 is failure. * 0 is success, < 0 is failure.
*/ */
static int static int ebml_read_ascii(ByteIOContext *pb, int size, char **str)
ebml_read_ascii (ByteIOContext *pb,
int size,
char **str)
{ {
av_free(*str); av_free(*str);
/* ebml strings are usually not 0-terminated, so we allocate one /* ebml strings are usually not 0-terminated, so we allocate one
...@@ -661,9 +644,7 @@ ebml_read_ascii (ByteIOContext *pb, ...@@ -661,9 +644,7 @@ ebml_read_ascii (ByteIOContext *pb,
* are supposed to be sub-elements which can be read separately. * are supposed to be sub-elements which can be read separately.
* 0 is success, < 0 is failure. * 0 is success, < 0 is failure.
*/ */
static int static int ebml_read_master(MatroskaDemuxContext *matroska, int length)
ebml_read_master (MatroskaDemuxContext *matroska,
int length)
{ {
ByteIOContext *pb = matroska->ctx->pb; ByteIOContext *pb = matroska->ctx->pb;
MatroskaLevel *level; MatroskaLevel *level;
...@@ -685,10 +666,7 @@ ebml_read_master (MatroskaDemuxContext *matroska, ...@@ -685,10 +666,7 @@ ebml_read_master (MatroskaDemuxContext *matroska,
* Read the next element as binary data. * Read the next element as binary data.
* 0 is success, < 0 is failure. * 0 is success, < 0 is failure.
*/ */
static int static int ebml_read_binary(ByteIOContext *pb, int length, EbmlBin *bin)
ebml_read_binary (ByteIOContext *pb,
int length,
EbmlBin *bin)
{ {
av_free(bin->data); av_free(bin->data);
if (!(bin->data = av_malloc(length))) if (!(bin->data = av_malloc(length)))
...@@ -707,10 +685,7 @@ ebml_read_binary (ByteIOContext *pb, ...@@ -707,10 +685,7 @@ ebml_read_binary (ByteIOContext *pb,
* Return: number of bytes processed, < 0 on error. * Return: number of bytes processed, < 0 on error.
* XXX: use ebml_read_num(). * XXX: use ebml_read_num().
*/ */
static int static int matroska_ebmlnum_uint(uint8_t *data, uint32_t size, uint64_t *num)
matroska_ebmlnum_uint (uint8_t *data,
uint32_t size,
uint64_t *num)
{ {
int len_mask = 0x80, read = 1, n = 1, num_ffs = 0; int len_mask = 0x80, read = 1, n = 1, num_ffs = 0;
uint64_t total; uint64_t total;
...@@ -748,10 +723,7 @@ matroska_ebmlnum_uint (uint8_t *data, ...@@ -748,10 +723,7 @@ matroska_ebmlnum_uint (uint8_t *data,
/* /*
* Same as above, but signed. * Same as above, but signed.
*/ */
static int static int matroska_ebmlnum_sint(uint8_t *data, uint32_t size, int64_t *num)
matroska_ebmlnum_sint (uint8_t *data,
uint32_t size,
int64_t *num)
{ {
uint64_t unum; uint64_t unum;
int res; int res;
...@@ -770,9 +742,8 @@ matroska_ebmlnum_sint (uint8_t *data, ...@@ -770,9 +742,8 @@ matroska_ebmlnum_sint (uint8_t *data,
} }
static MatroskaTrack * static MatroskaTrack *matroska_find_track_by_num(MatroskaDemuxContext *matroska,
matroska_find_track_by_num (MatroskaDemuxContext *matroska, int num)
int num)
{ {
MatroskaTrack *tracks = matroska->tracks.elem; MatroskaTrack *tracks = matroska->tracks.elem;
int i; int i;
...@@ -790,9 +761,8 @@ matroska_find_track_by_num (MatroskaDemuxContext *matroska, ...@@ -790,9 +761,8 @@ matroska_find_track_by_num (MatroskaDemuxContext *matroska,
* Put one packet in an application-supplied AVPacket struct. * Put one packet in an application-supplied AVPacket struct.
* Returns 0 on success or -1 on failure. * Returns 0 on success or -1 on failure.
*/ */
static int static int matroska_deliver_packet(MatroskaDemuxContext *matroska,
matroska_deliver_packet (MatroskaDemuxContext *matroska, AVPacket *pkt)
AVPacket *pkt)
{ {
if (matroska->num_packets > 0) { if (matroska->num_packets > 0) {
memcpy(pkt, matroska->packets[0], sizeof(AVPacket)); memcpy(pkt, matroska->packets[0], sizeof(AVPacket));
...@@ -817,9 +787,7 @@ matroska_deliver_packet (MatroskaDemuxContext *matroska, ...@@ -817,9 +787,7 @@ matroska_deliver_packet (MatroskaDemuxContext *matroska,
* Put a packet into our internal queue. Will be delivered to the * Put a packet into our internal queue. Will be delivered to the
* user/application during the next get_packet() call. * user/application during the next get_packet() call.
*/ */
static void static void matroska_queue_packet(MatroskaDemuxContext *matroska, AVPacket *pkt)
matroska_queue_packet (MatroskaDemuxContext *matroska,
AVPacket *pkt)
{ {
matroska->packets = matroska->packets =
av_realloc(matroska->packets, (matroska->num_packets + 1) * av_realloc(matroska->packets, (matroska->num_packets + 1) *
...@@ -831,8 +799,7 @@ matroska_queue_packet (MatroskaDemuxContext *matroska, ...@@ -831,8 +799,7 @@ matroska_queue_packet (MatroskaDemuxContext *matroska,
/* /*
* Free all packets in our internal queue. * Free all packets in our internal queue.
*/ */
static void static void matroska_clear_queue(MatroskaDemuxContext *matroska)
matroska_clear_queue (MatroskaDemuxContext *matroska)
{ {
if (matroska->packets) { if (matroska->packets) {
int n; int n;
...@@ -850,8 +817,7 @@ matroska_clear_queue (MatroskaDemuxContext *matroska) ...@@ -850,8 +817,7 @@ matroska_clear_queue (MatroskaDemuxContext *matroska)
/* /*
* Autodetecting... * Autodetecting...
*/ */
static int static int matroska_probe(AVProbeData *p)
matroska_probe (AVProbeData *p)
{ {
uint64_t total = 0; uint64_t total = 0;
int len_mask = 0x80, size = 1, n = 1; int len_mask = 0x80, size = 1, n = 1;
...@@ -1009,8 +975,8 @@ static void ebml_free(EbmlSyntax *syntax, void *data) ...@@ -1009,8 +975,8 @@ static void ebml_free(EbmlSyntax *syntax, void *data)
} }
} }
static int static int matroska_decode_buffer(uint8_t** buf, int* buf_size,
matroska_decode_buffer(uint8_t** buf, int* buf_size, MatroskaTrack *track) MatroskaTrack *track)
{ {
MatroskaTrackEncoding *encodings = track->encodings.elem; MatroskaTrackEncoding *encodings = track->encodings.elem;
uint8_t* data = *buf; uint8_t* data = *buf;
...@@ -1086,8 +1052,7 @@ matroska_decode_buffer(uint8_t** buf, int* buf_size, MatroskaTrack *track) ...@@ -1086,8 +1052,7 @@ matroska_decode_buffer(uint8_t** buf, int* buf_size, MatroskaTrack *track)
return -1; return -1;
} }
static void static void matroska_execute_seekhead(MatroskaDemuxContext *matroska)
matroska_execute_seekhead(MatroskaDemuxContext *matroska)
{ {
EbmlList *seekhead_list = &matroska->seekhead; EbmlList *seekhead_list = &matroska->seekhead;
MatroskaSeekhead *seekhead = seekhead_list->elem; MatroskaSeekhead *seekhead = seekhead_list->elem;
...@@ -1138,8 +1103,7 @@ matroska_execute_seekhead(MatroskaDemuxContext *matroska) ...@@ -1138,8 +1103,7 @@ matroska_execute_seekhead(MatroskaDemuxContext *matroska)
matroska->level_up = level_up; matroska->level_up = level_up;
} }
static int static int matroska_aac_profile(char *codec_id)
matroska_aac_profile (char *codec_id)
{ {
static const char *aac_profiles[] = { "MAIN", "LC", "SSR" }; static const char *aac_profiles[] = { "MAIN", "LC", "SSR" };
int profile; int profile;
...@@ -1150,8 +1114,7 @@ matroska_aac_profile (char *codec_id) ...@@ -1150,8 +1114,7 @@ matroska_aac_profile (char *codec_id)
return profile + 1; return profile + 1;
} }
static int static int matroska_aac_sri(int samplerate)
matroska_aac_sri (int samplerate)
{ {
int sri; int sri;
...@@ -1161,9 +1124,7 @@ matroska_aac_sri (int samplerate) ...@@ -1161,9 +1124,7 @@ matroska_aac_sri (int samplerate)
return sri; return sri;
} }
static int static int matroska_read_header(AVFormatContext *s, AVFormatParameters *ap)
matroska_read_header (AVFormatContext *s,
AVFormatParameters *ap)
{ {
MatroskaDemuxContext *matroska = s->priv_data; MatroskaDemuxContext *matroska = s->priv_data;
EbmlList *attachements_list = &matroska->attachments; EbmlList *attachements_list = &matroska->attachments;
...@@ -1468,10 +1429,9 @@ matroska_read_header (AVFormatContext *s, ...@@ -1468,10 +1429,9 @@ matroska_read_header (AVFormatContext *s,
return 0; return 0;
} }
static int static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data,
matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, int size, int size, int64_t pos, uint64_t cluster_time,
int64_t pos, uint64_t cluster_time, uint64_t duration, uint64_t duration, int is_keyframe)
int is_keyframe)
{ {
MatroskaTrack *track; MatroskaTrack *track;
int res = 0; int res = 0;
...@@ -1679,8 +1639,7 @@ matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, int size, ...@@ -1679,8 +1639,7 @@ matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, int size,
return res; return res;
} }
static int static int matroska_parse_cluster(MatroskaDemuxContext *matroska)
matroska_parse_cluster (MatroskaDemuxContext *matroska)
{ {
MatroskaCluster cluster = { 0 }; MatroskaCluster cluster = { 0 };
EbmlList *blocks_list; EbmlList *blocks_list;
...@@ -1698,9 +1657,7 @@ matroska_parse_cluster (MatroskaDemuxContext *matroska) ...@@ -1698,9 +1657,7 @@ matroska_parse_cluster (MatroskaDemuxContext *matroska)
return res; return res;
} }
static int static int matroska_read_packet(AVFormatContext *s, AVPacket *pkt)
matroska_read_packet (AVFormatContext *s,
AVPacket *pkt)
{ {
MatroskaDemuxContext *matroska = s->priv_data; MatroskaDemuxContext *matroska = s->priv_data;
...@@ -1714,9 +1671,8 @@ matroska_read_packet (AVFormatContext *s, ...@@ -1714,9 +1671,8 @@ matroska_read_packet (AVFormatContext *s,
return 0; return 0;
} }
static int static int matroska_read_seek(AVFormatContext *s, int stream_index,
matroska_read_seek (AVFormatContext *s, int stream_index, int64_t timestamp, int64_t timestamp, int flags)
int flags)
{ {
MatroskaDemuxContext *matroska = s->priv_data; MatroskaDemuxContext *matroska = s->priv_data;
AVStream *st = s->streams[stream_index]; AVStream *st = s->streams[stream_index];
...@@ -1736,8 +1692,7 @@ matroska_read_seek (AVFormatContext *s, int stream_index, int64_t timestamp, ...@@ -1736,8 +1692,7 @@ matroska_read_seek (AVFormatContext *s, int stream_index, int64_t timestamp,
return 0; return 0;
} }
static int static int matroska_read_close(AVFormatContext *s)
matroska_read_close (AVFormatContext *s)
{ {
MatroskaDemuxContext *matroska = s->priv_data; MatroskaDemuxContext *matroska = s->priv_data;
MatroskaTrack *tracks = matroska->tracks.elem; MatroskaTrack *tracks = matroska->tracks.elem;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment