summarylogtreecommitdiffstats
path: root/moc-ffmpeg4.patch
diff options
context:
space:
mode:
authorDaniel T. Borelli2018-11-27 11:06:56 -0300
committerDaniel T. Borelli2018-11-27 11:06:56 -0300
commit04d27a28ece1dc2a6b3e06b9b0ca319d2905df87 (patch)
tree09be6668c640b9da963ee74ceb02216eb1f7f517 /moc-ffmpeg4.patch
parent6af734cf451848a5bdea7f189710a3f0f70416c4 (diff)
downloadaur-moc-svn.tar.gz
New svn revision.
Delete file moc-ffmpeg4.patch Add .gitignore
Diffstat (limited to 'moc-ffmpeg4.patch')
-rw-r--r--moc-ffmpeg4.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/moc-ffmpeg4.patch b/moc-ffmpeg4.patch
deleted file mode 100644
index c1e43a7c2f3e..000000000000
--- a/moc-ffmpeg4.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-Index: decoder_plugins/ffmpeg/ffmpeg.c
-===================================================================
---- decoder_plugins/ffmpeg/ffmpeg.c (revisiĆ³n: 2963)
-+++ decoder_plugins/ffmpeg/ffmpeg.c (copia de trabajo)
-@@ -697,7 +697,7 @@
- * FFmpeg/LibAV in use. For some versions this will be caught in
- * *_find_stream_info() above and misreported as an unfound codec
- * parameters error. */
-- if (data->codec->capabilities & CODEC_CAP_EXPERIMENTAL) {
-+ if (data->codec->capabilities & AV_CODEC_CAP_EXPERIMENTAL) {
- decoder_error (&data->error, ERROR_FATAL, 0,
- "The codec is experimental and may damage MOC: %s",
- data->codec->name);
-@@ -705,8 +705,8 @@
- }
-
- set_downmixing (data);
-- if (data->codec->capabilities & CODEC_CAP_TRUNCATED)
-- data->enc->flags |= CODEC_FLAG_TRUNCATED;
-+ if (data->codec->capabilities & AV_CODEC_CAP_TRUNCATED)
-+ data->enc->flags |= AV_CODEC_FLAG_TRUNCATED;
-
- if (avcodec_open2 (data->enc, data->codec, NULL) < 0)
- {
-@@ -725,7 +725,7 @@
-
- data->sample_width = sfmt_Bps (data->fmt);
-
-- if (data->codec->capabilities & CODEC_CAP_DELAY)
-+ if (data->codec->capabilities & AV_CODEC_CAP_DELAY)
- data->delay = true;
- data->seek_broken = is_seek_broken (data);
- data->timing_broken = is_timing_broken (data->ic);