libeplayer3: remove writeReverseData (unused)

This commit is contained in:
martii
2014-04-05 17:50:22 +02:00
parent 23bad752df
commit 06c260681f
12 changed files with 0 additions and 43 deletions

View File

@@ -371,30 +371,6 @@ static int writeData(WriterAVCallData_t *call)
return len;
}
static int writeReverseData(WriterAVCallData_t *call)
{
h264_printf(10, "\n");
if (call == NULL) {
h264_err("call data is NULL...\n");
return 0;
}
h264_printf(10, "VideoPts %lld\n", call->Pts);
if ((call->packet->data == NULL) || (call->packet->size <= 0)) {
h264_err("NULL Data. ignoring...\n");
return 0;
}
if (call->fd < 0) {
h264_err("file pointer < 0. ignoring ...\n");
return 0;
}
return 0;
}
/* ***************************** */
/* Writer Definition */
/* ***************************** */
@@ -409,6 +385,5 @@ static WriterCaps_t caps = {
struct Writer_s WriterVideoH264 = {
&reset,
&writeData,
&writeReverseData,
&caps
};