summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-06-23 03:48:30 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-06-23 03:48:30 +0200
commit56afbe8dbc6e508ba279bb95db542b940284fa7d (patch)
tree07d4be3dca4b6f63399a81c59a18867d8212892f /libavcodec
parentca350378de061a43d394dab2a649995f7f83274c (diff)
parent7b9ef8d701c319c26f7d0664fe977e176764c74e (diff)
Merge commit '7b9ef8d701c319c26f7d0664fe977e176764c74e'
* commit '7b9ef8d701c319c26f7d0664fe977e176764c74e': mpeg: Split error resilience bits off into a separate file Conflicts: configure libavcodec/Makefile libavcodec/mpegvideo.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/Makefile1
-rw-r--r--libavcodec/h261dec.c1
-rw-r--r--libavcodec/h263dec.c1
-rw-r--r--libavcodec/mpeg12dec.c1
-rw-r--r--libavcodec/mpeg_er.c60
-rw-r--r--libavcodec/mpeg_er.h26
-rw-r--r--libavcodec/mpegvideo.c41
-rw-r--r--libavcodec/mpegvideo.h3
-rw-r--r--libavcodec/mss2.c1
-rw-r--r--libavcodec/rv10.c1
-rw-r--r--libavcodec/rv34.c1
-rw-r--r--libavcodec/vc1dec.c1
12 files changed, 94 insertions, 44 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index 9924ea6aeb..d88c290253 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -65,6 +65,7 @@ OBJS-$(CONFIG_LLVIDDSP) += lossless_videodsp.o
OBJS-$(CONFIG_LPC) += lpc.o
OBJS-$(CONFIG_LSP) += lsp.o
OBJS-$(CONFIG_MDCT) += mdct_fixed.o mdct_float.o mdct_fixed_32.o
+OBJS-$(CONFIG_MPEG_ER) += mpeg_er.o
OBJS-$(CONFIG_MPEGAUDIO) += mpegaudio.o mpegaudiodata.o \
mpegaudiodecheader.o
OBJS-$(CONFIG_MPEGAUDIODSP) += mpegaudiodsp.o \
diff --git a/libavcodec/h261dec.c b/libavcodec/h261dec.c
index 1ceeff7ef3..7e63f29492 100644
--- a/libavcodec/h261dec.c
+++ b/libavcodec/h261dec.c
@@ -27,6 +27,7 @@
#include "libavutil/avassert.h"
#include "avcodec.h"
+#include "mpeg_er.h"
#include "mpegutils.h"
#include "mpegvideo.h"
#include "h263.h"
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index 7266cc7a37..31ec642e9f 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -34,6 +34,7 @@
#include "h263.h"
#include "h263_parser.h"
#include "internal.h"
+#include "mpeg_er.h"
#include "mpeg4video.h"
#include "mpeg4video_parser.h"
#include "mpegvideo.h"
diff --git a/libavcodec/mpeg12dec.c b/libavcodec/mpeg12dec.c
index 0e8bcb02ec..92193ce916 100644
--- a/libavcodec/mpeg12dec.c
+++ b/libavcodec/mpeg12dec.c
@@ -37,6 +37,7 @@
#include "dsputil.h"
#include "error_resilience.h"
#include "internal.h"
+#include "mpeg_er.h"
#include "mpeg12.h"
#include "mpeg12data.h"
#include "mpegutils.h"
diff --git a/libavcodec/mpeg_er.c b/libavcodec/mpeg_er.c
new file mode 100644
index 0000000000..3d90582db3
--- /dev/null
+++ b/libavcodec/mpeg_er.c
@@ -0,0 +1,60 @@
+/*
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include "error_resilience.h"
+#include "mpegvideo.h"
+#include "mpeg_er.h"
+
+static void set_erpic(ERPicture *dst, Picture *src)
+{
+ int i;
+
+ memset(dst, 0, sizeof(*dst));
+ if (!src) {
+ dst->f = NULL;
+ dst->tf = NULL;
+ return;
+ }
+
+ dst->f = src->f;
+ dst->tf = &src->tf;
+
+ for (i = 0; i < 2; i++) {
+ dst->motion_val[i] = src->motion_val[i];
+ dst->ref_index[i] = src->ref_index[i];
+ }
+
+ dst->mb_type = src->mb_type;
+ dst->field_picture = src->field_picture;
+}
+
+void ff_mpeg_er_frame_start(MpegEncContext *s)
+{
+ ERContext *er = &s->er;
+
+ set_erpic(&er->cur_pic, s->current_picture_ptr);
+ set_erpic(&er->next_pic, s->next_picture_ptr);
+ set_erpic(&er->last_pic, s->last_picture_ptr);
+
+ er->pp_time = s->pp_time;
+ er->pb_time = s->pb_time;
+ er->quarter_sample = s->quarter_sample;
+ er->partitioned_frame = s->partitioned_frame;
+
+ ff_er_frame_start(er);
+}
diff --git a/libavcodec/mpeg_er.h b/libavcodec/mpeg_er.h
new file mode 100644
index 0000000000..bd74fbb0c8
--- /dev/null
+++ b/libavcodec/mpeg_er.h
@@ -0,0 +1,26 @@
+/*
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef AVCODEC_MPEG_ER_H
+#define AVCODEC_MPEG_ER_H
+
+#include "mpegvideo.h"
+
+void ff_mpeg_er_frame_start(MpegEncContext *s);
+
+#endif /* AVCODEC_MPEG_ER_H */
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index 6238545715..ffea7b0d04 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -3235,44 +3235,3 @@ void ff_MPV_report_decode_progress(MpegEncContext *s)
if (s->pict_type != AV_PICTURE_TYPE_B && !s->partitioned_frame && !s->er.error_occurred)
ff_thread_report_progress(&s->current_picture_ptr->tf, s->mb_y, 0);
}
-
-#if CONFIG_ERROR_RESILIENCE
-static void set_erpic(ERPicture *dst, Picture *src)
-{
- int i;
-
- memset(dst, 0, sizeof(*dst));
- if (!src) {
- dst->f = NULL;
- dst->tf = NULL;
- return;
- }
-
- dst->f = src->f;
- dst->tf = &src->tf;
-
- for (i = 0; i < 2; i++) {
- dst->motion_val[i] = src->motion_val[i];
- dst->ref_index[i] = src->ref_index[i];
- }
-
- dst->mb_type = src->mb_type;
- dst->field_picture = src->field_picture;
-}
-
-void ff_mpeg_er_frame_start(MpegEncContext *s)
-{
- ERContext *er = &s->er;
-
- set_erpic(&er->cur_pic, s->current_picture_ptr);
- set_erpic(&er->next_pic, s->next_picture_ptr);
- set_erpic(&er->last_pic, s->last_picture_ptr);
-
- er->pp_time = s->pp_time;
- er->pb_time = s->pb_time;
- er->quarter_sample = s->quarter_sample;
- er->partitioned_frame = s->partitioned_frame;
-
- ff_er_frame_start(er);
-}
-#endif /* CONFIG_ERROR_RESILIENCE */
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h
index 0cfe7af9ba..18eab28209 100644
--- a/libavcodec/mpegvideo.h
+++ b/libavcodec/mpegvideo.h
@@ -753,9 +753,6 @@ void ff_MPV_report_decode_progress(MpegEncContext *s);
int ff_mpeg_update_thread_context(AVCodecContext *dst, const AVCodecContext *src);
void ff_set_qscale(MpegEncContext * s, int qscale);
-/* Error resilience */
-void ff_mpeg_er_frame_start(MpegEncContext *s);
-
int ff_dct_common_init(MpegEncContext *s);
int ff_dct_encode_init(MpegEncContext *s);
void ff_convert_matrix(DSPContext *dsp, int (*qmat)[64], uint16_t (*qmat16)[2][64],
diff --git a/libavcodec/mss2.c b/libavcodec/mss2.c
index 5f21b012f4..35c5d2722d 100644
--- a/libavcodec/mss2.c
+++ b/libavcodec/mss2.c
@@ -26,6 +26,7 @@
#include "libavutil/avassert.h"
#include "error_resilience.h"
#include "internal.h"
+#include "mpeg_er.h"
#include "msmpeg4data.h"
#include "qpeldsp.h"
#include "vc1.h"
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c
index 3fb94c8ad7..f908a9a13a 100644
--- a/libavcodec/rv10.c
+++ b/libavcodec/rv10.c
@@ -33,6 +33,7 @@
#include "error_resilience.h"
#include "h263.h"
#include "internal.h"
+#include "mpeg_er.h"
#include "mpegvideo.h"
#include "mpeg4video.h"
diff --git a/libavcodec/rv34.c b/libavcodec/rv34.c
index 8ed4b5b284..873ec3c5a8 100644
--- a/libavcodec/rv34.c
+++ b/libavcodec/rv34.c
@@ -34,6 +34,7 @@
#include "golomb.h"
#include "internal.h"
#include "mathops.h"
+#include "mpeg_er.h"
#include "qpeldsp.h"
#include "rectangle.h"
#include "thread.h"
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c
index ca33f58244..455896a21c 100644
--- a/libavcodec/vc1dec.c
+++ b/libavcodec/vc1dec.c
@@ -29,6 +29,7 @@
#include "internal.h"
#include "avcodec.h"
#include "error_resilience.h"
+#include "mpeg_er.h"
#include "mpegutils.h"
#include "mpegvideo.h"
#include "h263.h"