[FFmpeg-cvslog] mpegtsenc: remove unused variables
Georgi Chorbadzhiyski
git
Wed Jan 26 04:01:17 CET 2011
ffmpeg | branch: master | Georgi Chorbadzhiyski <gf at unixsol.org> | Tue Jan 25 12:58:31 2011 +0200| [4fee6f32e2d41395106bc224c4642c26c6e8fa75] | committer: Michael Niedermayer
mpegtsenc: remove unused variables
Remove two variables that were not used and caused the following
warnings:
CC libavformat/mpegtsenc.o
libavformat/mpegtsenc.c: In function 'mpegts_write_section':
libavformat/mpegtsenc.c:72:18: warning: unused variable 'ts'
libavformat/mpegtsenc.c: In function 'mpegts_insert_null_packet':
libavformat/mpegtsenc.c:586:18: warning: unused variable 'ts'
Signed-off-by: Mans Rullgard <mans at mansr.com>
(cherry picked from commit 6e78c8ee9420cc8e8899462b59e2305b4c056081)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4fee6f32e2d41395106bc224c4642c26c6e8fa75
---
libavformat/mpegtsenc.c | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c
index f33b6c6..f621646 100644
--- a/libavformat/mpegtsenc.c
+++ b/libavformat/mpegtsenc.c
@@ -69,7 +69,6 @@ typedef struct MpegTSWrite {
/* NOTE: 4 bytes must be left at the end for the crc32 */
static void mpegts_write_section(MpegTSSection *s, uint8_t *buf, int len)
{
- MpegTSWrite *ts = ((AVFormatContext*)s->opaque)->priv_data;
unsigned int crc;
unsigned char packet[TS_PACKET_SIZE];
const unsigned char *buf_ptr;
@@ -583,7 +582,6 @@ static uint8_t* write_pcr_bits(uint8_t *buf, int64_t pcr)
/* Write a single null transport stream packet */
static void mpegts_insert_null_packet(AVFormatContext *s)
{
- MpegTSWrite *ts = s->priv_data;
uint8_t *q;
uint8_t buf[TS_PACKET_SIZE];
More information about the ffmpeg-cvslog
mailing list