libeplayer3: remove writeReverseData (unused)

Origin commit data
------------------
Branch: master
Commit: aa98de5993
Author: martii <m4rtii@gmx.de>
Date: 2014-04-05 (Sat, 05 Apr 2014)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
martii
2014-04-05 17:50:22 +02:00
parent 6122d9e51d
commit 6e0532e834
12 changed files with 0 additions and 43 deletions

View File

@@ -38,7 +38,6 @@ typedef struct WriterCaps_s {
typedef struct Writer_s {
int (*reset) ();
int (*writeData) (WriterAVCallData_t *);
int (*writeReverseData) (WriterAVCallData_t *);
WriterCaps_t *caps;
} Writer_t;

View File

@@ -130,7 +130,6 @@ static WriterCaps_t caps_ac3 = {
struct Writer_s WriterAudioAC3 = {
&reset,
&writeData,
NULL,
&caps_ac3
};
@@ -144,6 +143,5 @@ static WriterCaps_t caps_eac3 = {
struct Writer_s WriterAudioEAC3 = {
&reset,
&writeData,
NULL,
&caps_eac3
};

View File

@@ -172,7 +172,6 @@ static WriterCaps_t mpeg4p2_caps = {
struct Writer_s WriterVideoMSCOMP = {
&reset,
&writeData,
NULL,
&mpeg4p2_caps
};
@@ -186,7 +185,6 @@ static WriterCaps_t fourcc_caps = {
struct Writer_s WriterVideoFOURCC = {
&reset,
&writeData,
NULL,
&fourcc_caps
};
@@ -200,6 +198,5 @@ static WriterCaps_t divx_caps = {
struct Writer_s WriterVideoDIVX = {
&reset,
&writeData,
NULL,
&divx_caps
};

View File

@@ -155,6 +155,5 @@ static WriterCaps_t caps = {
struct Writer_s WriterAudioDTS = {
&reset,
&writeData,
NULL,
&caps
};

View File

@@ -131,6 +131,5 @@ static WriterCaps_t caps_flac = {
struct Writer_s WriterAudioFLAC = {
&reset,
&writeData,
NULL,
&caps_flac
};

View File

@@ -144,7 +144,6 @@ static WriterCaps_t caps_h263 = {
struct Writer_s WriterVideoH263 = {
&reset,
&writeData,
NULL,
&caps_h263
};
@@ -158,6 +157,5 @@ static WriterCaps_t caps_flv = {
struct Writer_s WriterVideoFLV = {
&reset,
&writeData,
NULL,
&caps_flv
};

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
};

View File

@@ -133,7 +133,6 @@ static WriterCaps_t caps_mp3 = {
struct Writer_s WriterAudioMP3 = {
&reset,
&writeData,
NULL,
&caps_mp3
};
@@ -147,7 +146,6 @@ static WriterCaps_t caps_mpegl3 = {
struct Writer_s WriterAudioMPEGL3 = {
&reset,
&writeData,
NULL,
&caps_mpegl3
};
@@ -161,6 +159,5 @@ static WriterCaps_t caps_vorbis = {
struct Writer_s WriterAudioVORBIS = {
&reset,
&writeData,
NULL,
&caps_vorbis
};

View File

@@ -147,7 +147,6 @@ static WriterCaps_t caps = {
struct Writer_s WriterVideoMPEG2 = {
&reset,
&writeData,
NULL,
&caps
};
@@ -161,6 +160,5 @@ static WriterCaps_t h264_caps = {
struct Writer_s WriterVideoMPEGH264 = {
&reset,
&writeData,
NULL,
&h264_caps
};

View File

@@ -423,6 +423,5 @@ static WriterCaps_t caps_ipcm = {
struct Writer_s WriterAudioIPCM = {
&reset,
&writeData,
NULL,
&caps_ipcm
};

View File

@@ -281,6 +281,5 @@ static WriterCaps_t caps = {
struct Writer_s WriterVideoVC1 = {
&reset,
&writeData,
NULL,
&caps
};

View File

@@ -255,6 +255,5 @@ static WriterCaps_t caps = {
struct Writer_s WriterVideoWMV = {
&reset,
&writeData,
NULL,
&caps
};