Browse Source

avcodec/h264: remove unused variable

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Michael Niedermayer 12 years ago
parent
commit
6ea05ef278
2 changed files with 0 additions and 5 deletions
  1. +0
    -3
      libavcodec/h264.c
  2. +0
    -2
      libavcodec/h264.h

+ 0
- 3
libavcodec/h264.c View File

@@ -1213,9 +1213,6 @@ static void free_tables(H264Context *h, int free_rbsp)
av_freep(&h->mb2b_xy);
av_freep(&h->mb2br_xy);

for (i = 0; i < 3; i++)
av_freep(&h->visualization_buffer[i]);

av_buffer_pool_uninit(&h->qscale_table_pool);
av_buffer_pool_uninit(&h->mb_type_pool);
av_buffer_pool_uninit(&h->motion_val_pool);


+ 0
- 2
libavcodec/h264.h View File

@@ -696,8 +696,6 @@ typedef struct H264Context {
uint8_t *edge_emu_buffer;
int16_t *dc_val_base;

uint8_t *visualization_buffer[3]; ///< temporary buffer vor MV visualization

AVBufferPool *qscale_table_pool;
AVBufferPool *mb_type_pool;
AVBufferPool *motion_val_pool;


Loading…
Cancel
Save